Enum DrPlanExecutionType
- java.lang.Object
-
- java.lang.Enum<DrPlanExecutionType>
-
- com.oracle.bmc.disasterrecovery.model.DrPlanExecutionType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<DrPlanExecutionType>
@Generated(value="OracleSDKGenerator", comments="API Version: 20220125") public enum DrPlanExecutionType extends Enum<DrPlanExecutionType> implements BmcEnum
The types of DR plan execution that can be created, updated, or deleted by the user.Executions of type precheck cannot be created separately by the user. They are automatically generated as part of the plan, however prechecks can be executed separately from a plan. - SWITCHOVER - Switchover from primary to standby. - SWITCHOVER_PRECHECK - Precheck for switchover DR plan. - FAILOVER - Failover to standby. - FAILOVER_PRECHECK - Precheck for failover DR plan. - START_DRILL - Start DR Drill. - START_DRILL_PRECHECK - Precheck for a start drill DR plan. - STOP_DRILL - Stop DR Drill. - STOP_DRILL_PRECHECK - Precheck for a stop drill DR plan.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Failover
FailoverPrecheck
StartDrill
StartDrillPrecheck
StopDrill
StopDrillPrecheck
Switchover
SwitchoverPrecheck
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 DrPlanExecutionType
create(String key)
String
getValue()
static DrPlanExecutionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DrPlanExecutionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Switchover
public static final DrPlanExecutionType Switchover
-
SwitchoverPrecheck
public static final DrPlanExecutionType SwitchoverPrecheck
-
Failover
public static final DrPlanExecutionType Failover
-
FailoverPrecheck
public static final DrPlanExecutionType FailoverPrecheck
-
StartDrill
public static final DrPlanExecutionType StartDrill
-
StartDrillPrecheck
public static final DrPlanExecutionType StartDrillPrecheck
-
StopDrill
public static final DrPlanExecutionType StopDrill
-
StopDrillPrecheck
public static final DrPlanExecutionType StopDrillPrecheck
-
UnknownEnumValue
public static final DrPlanExecutionType 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 DrPlanExecutionType[] 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 (DrPlanExecutionType c : DrPlanExecutionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DrPlanExecutionType 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 DrPlanExecutionType create(String key)
-
-