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 Summary
Enum Constants Enum Constant Description Acked
AckedCanceled
Expired
Pending
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.Visible
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InstanceAgentCommandExecutionSummary.DeliveryState
create(String key)
String
getValue()
static InstanceAgentCommandExecutionSummary.DeliveryState
valueOf(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
-
Visible
public static final InstanceAgentCommandExecutionSummary.DeliveryState Visible
-
Pending
public static final InstanceAgentCommandExecutionSummary.DeliveryState Pending
-
Acked
public static final InstanceAgentCommandExecutionSummary.DeliveryState Acked
-
AckedCanceled
public static final InstanceAgentCommandExecutionSummary.DeliveryState AckedCanceled
-
Expired
public static final InstanceAgentCommandExecutionSummary.DeliveryState Expired
-
UnknownEnumValue
public 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
-
values
public 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
-
valueOf
public 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 nameNullPointerException
- if the argument is null
-
create
public static InstanceAgentCommandExecutionSummary.DeliveryState create(String key)
-
-