public static enum DrPlanUserDefinedStep.StepType extends Enum<DrPlanUserDefinedStep.StepType> implements BmcEnum
The type of the user-defined step.
*RUN_OBJECTSTORE_SCRIPT_PRECHECK** - A step which performs a precheck on a script stored in OCI object storage.
*RUN_LOCAL_SCRIPT_PRECHECK** - A step which performs a precheck on a script which resides locally on a compute instance.
*INVOKE_FUNCTION_PRECHECK** - A step which performs a precheck on an OCI function. See https://docs.oracle.com/en-us/iaas/Content/Functions/home.htm.
*RUN_OBJECTSTORE_SCRIPT** - A step which runs a script stored in OCI object storage.
*RUN_LOCAL_SCRIPT** - A step which runs a script that resides locally on a compute instance.
*INVOKE_FUNCTION** - A step which invokes an OCI function. See https://docs.oracle.com/en-us/iaas/Content/Functions/home.htm.
Enum Constant and Description |
---|
InvokeFunction |
InvokeFunctionPrecheck |
RunLocalScript |
RunLocalScriptPrecheck |
RunObjectstoreScript |
RunObjectstoreScriptPrecheck |
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by
this version of the SDK.
|
Modifier and Type | Method and Description |
---|---|
static DrPlanUserDefinedStep.StepType |
create(String key) |
String |
getValue() |
static DrPlanUserDefinedStep.StepType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DrPlanUserDefinedStep.StepType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DrPlanUserDefinedStep.StepType RunObjectstoreScriptPrecheck
public static final DrPlanUserDefinedStep.StepType RunLocalScriptPrecheck
public static final DrPlanUserDefinedStep.StepType InvokeFunctionPrecheck
public static final DrPlanUserDefinedStep.StepType RunObjectstoreScript
public static final DrPlanUserDefinedStep.StepType RunLocalScript
public static final DrPlanUserDefinedStep.StepType InvokeFunction
public static final DrPlanUserDefinedStep.StepType UnknownEnumValue
public static DrPlanUserDefinedStep.StepType[] values()
for (DrPlanUserDefinedStep.StepType c : DrPlanUserDefinedStep.StepType.values()) System.out.println(c);
public static DrPlanUserDefinedStep.StepType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static DrPlanUserDefinedStep.StepType create(String key)
Copyright © 2016–2024. All rights reserved.