Enum InstanceAgentCommandExecutionSummary.DeliveryState
- java.lang.Object
- 
- java.lang.Enum<InstanceAgentCommandExecutionSummary.DeliveryState>
- 
- com.oracle.bmc.computeinstanceagent.model.InstanceAgentCommandExecutionSummary.DeliveryState
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<InstanceAgentCommandExecutionSummary.DeliveryState>
 - Enclosing class:
- InstanceAgentCommandExecutionSummary
 
 public static enum InstanceAgentCommandExecutionSummary.DeliveryState extends Enum<InstanceAgentCommandExecutionSummary.DeliveryState> implements BmcEnum The command delivery state.- VISIBLE - The command is visible to the instance. * PENDING - The command is pending acknowledgment from the instance. * ACKED - The command has been received and acknowledged by the instance. * ACKED_CANCELED - The canceled command has been received and acknowledged by the instance. * EXPIRED - The instance has not requested for commands and the command’s delivery has expired.
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AckedAckedCanceledExpiredPendingUnknownEnumValueThis value is used if a service returns a value for this enum that is not recognized by this version of the SDK.Visible
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InstanceAgentCommandExecutionSummary.DeliveryStatecreate(String key)StringgetValue()static InstanceAgentCommandExecutionSummary.DeliveryStatevalueOf(String name)Returns the enum constant of this type with the specified name.static InstanceAgentCommandExecutionSummary.DeliveryState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Visiblepublic static final InstanceAgentCommandExecutionSummary.DeliveryState Visible 
 - 
Pendingpublic static final InstanceAgentCommandExecutionSummary.DeliveryState Pending 
 - 
Ackedpublic static final InstanceAgentCommandExecutionSummary.DeliveryState Acked 
 - 
AckedCanceledpublic static final InstanceAgentCommandExecutionSummary.DeliveryState AckedCanceled 
 - 
Expiredpublic static final InstanceAgentCommandExecutionSummary.DeliveryState Expired 
 - 
UnknownEnumValuepublic static final InstanceAgentCommandExecutionSummary.DeliveryState 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 InstanceAgentCommandExecutionSummary.DeliveryState[] 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 (InstanceAgentCommandExecutionSummary.DeliveryState c : InstanceAgentCommandExecutionSummary.DeliveryState.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static InstanceAgentCommandExecutionSummary.DeliveryState 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 InstanceAgentCommandExecutionSummary.DeliveryState create(String key) 
 
- 
 
-