Enum InstanceAgentCommandExecution.LifecycleState
- java.lang.Object
- 
- java.lang.Enum<InstanceAgentCommandExecution.LifecycleState>
- 
- com.oracle.bmc.computeinstanceagent.model.InstanceAgentCommandExecution.LifecycleState
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<InstanceAgentCommandExecution.LifecycleState>
 - Enclosing class:
- InstanceAgentCommandExecution
 
 public static enum InstanceAgentCommandExecution.LifecycleState extends Enum<InstanceAgentCommandExecution.LifecycleState> implements BmcEnum command execution life cycle state.- ACCEPTED - The command execution has been accepted to run. * IN_PROGRESS - The command execution is in progress. * SUCCEEDED - The command execution is successful. * FAILED - The command execution has failed. * TIMED_OUT - The command execution has timedout. * CANCELED - The command execution has canceled.
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AcceptedCanceledFailedInProgressSucceededTimedOutUnknownEnumValueThis value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InstanceAgentCommandExecution.LifecycleStatecreate(String key)StringgetValue()static InstanceAgentCommandExecution.LifecycleStatevalueOf(String name)Returns the enum constant of this type with the specified name.static InstanceAgentCommandExecution.LifecycleState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Acceptedpublic static final InstanceAgentCommandExecution.LifecycleState Accepted 
 - 
InProgresspublic static final InstanceAgentCommandExecution.LifecycleState InProgress 
 - 
Succeededpublic static final InstanceAgentCommandExecution.LifecycleState Succeeded 
 - 
Failedpublic static final InstanceAgentCommandExecution.LifecycleState Failed 
 - 
TimedOutpublic static final InstanceAgentCommandExecution.LifecycleState TimedOut 
 - 
Canceledpublic static final InstanceAgentCommandExecution.LifecycleState Canceled 
 - 
UnknownEnumValuepublic static final InstanceAgentCommandExecution.LifecycleState 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- 
valuespublic static InstanceAgentCommandExecution.LifecycleState[] 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 (InstanceAgentCommandExecution.LifecycleState c : InstanceAgentCommandExecution.LifecycleState.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static InstanceAgentCommandExecution.LifecycleState 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 name
- NullPointerException- if the argument is null
 
 - 
createpublic static InstanceAgentCommandExecution.LifecycleState create(String key) 
 
- 
 
-