public enum CloudChangeAction extends java.lang.Enum<CloudChangeAction>
| Enum Constant and Description |
|---|
APPLY
The task needs to be applied/applied - cloud orchestrator determined it should run.
|
MANUAL_INTERVENTION
Manual intervention is required for this task.
|
SKIP
The task should be skipped as it has already been successfully applied.
|
| Modifier and Type | Method and Description |
|---|---|
static CloudChangeAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CloudChangeAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CloudChangeAction APPLY
public static final CloudChangeAction SKIP
public static final CloudChangeAction MANUAL_INTERVENTION
public static CloudChangeAction[] values()
for (CloudChangeAction c : CloudChangeAction.values()) System.out.println(c);
public static CloudChangeAction valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null