Enum DrPlanStepExecutionStatus
- java.lang.Object
-
- java.lang.Enum<DrPlanStepExecutionStatus>
-
- com.oracle.bmc.disasterrecovery.model.DrPlanStepExecutionStatus
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<DrPlanStepExecutionStatus>
@Generated(value="OracleSDKGenerator", comments="API Version: 20220125") public enum DrPlanStepExecutionStatus extends Enum<DrPlanStepExecutionStatus> implements BmcEnum
The execution statuses for a DR plan step.- QUEUED - DR plan step execution has been queued. - DISABLED - DR plan step execution has been disabled. - IN_PROGRESS - DR plan step execution is in progress. - SUCCEEDED - DR plan step execution has succeeded. - FAILED - DR plan step execution has failed. - FAILED_IGNORED - DR plan step execution has failed, but was ignored. - TIMED_OUT - DR plan step execution has timed out. - TIMED_OUT_IGNORED - DR plan step execution has timed out, but was ignored. - PAUSED - DR plan step execution has paused. - CANCELED - DR plan step execution has been canceled.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Canceled
Disabled
Failed
FailedIgnored
InProgress
Paused
Queued
Succeeded
TimedOut
TimedOutIgnored
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DrPlanStepExecutionStatus
create(String key)
String
getValue()
static DrPlanStepExecutionStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static DrPlanStepExecutionStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Queued
public static final DrPlanStepExecutionStatus Queued
-
Disabled
public static final DrPlanStepExecutionStatus Disabled
-
InProgress
public static final DrPlanStepExecutionStatus InProgress
-
Succeeded
public static final DrPlanStepExecutionStatus Succeeded
-
Failed
public static final DrPlanStepExecutionStatus Failed
-
FailedIgnored
public static final DrPlanStepExecutionStatus FailedIgnored
-
TimedOut
public static final DrPlanStepExecutionStatus TimedOut
-
TimedOutIgnored
public static final DrPlanStepExecutionStatus TimedOutIgnored
-
Paused
public static final DrPlanStepExecutionStatus Paused
-
Canceled
public static final DrPlanStepExecutionStatus Canceled
-
UnknownEnumValue
public static final DrPlanStepExecutionStatus UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static DrPlanStepExecutionStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DrPlanStepExecutionStatus c : DrPlanStepExecutionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DrPlanStepExecutionStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static DrPlanStepExecutionStatus create(String key)
-
-