Package com.google.cloud.compute.v1
Enum Instance.Status
- java.lang.Object
-
- java.lang.Enum<Instance.Status>
-
- com.google.cloud.compute.v1.Instance.Status
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<Instance.Status>
- Enclosing class:
- Instance
public static enum Instance.Status extends Enum<Instance.Status> implements com.google.protobuf.ProtocolMessageEnum
[Output Only] The status of the instance. One of the following values: PROVISIONING, STAGING, RUNNING, STOPPING, SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. For more information about the status of the instance, see Instance life cycle.
Protobuf enumgoogle.cloud.compute.v1.Instance.Status
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEPROVISIONING
The instance is halted and we are performing tear down tasks like network deprogramming, releasing quota, IP, tearing down disks etc.PROVISIONING
Resources are being allocated for the instance.REPAIRING
The instance is in repair.RUNNING
The instance is running.STAGING
All required resources have been allocated and the instance is being started.STOPPED
The instance has stopped successfully.STOPPING
The instance is currently stopping (either being deleted or killed).SUSPENDED
The instance has suspended.SUSPENDING
The instance is suspending.TERMINATED
The instance has stopped (either by explicit action or underlying failure).UNDEFINED_STATUS
A value indicating that the enum field is not set.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
DEPROVISIONING_VALUE
The instance is halted and we are performing tear down tasks like network deprogramming, releasing quota, IP, tearing down disks etc.static int
PROVISIONING_VALUE
Resources are being allocated for the instance.static int
REPAIRING_VALUE
The instance is in repair.static int
RUNNING_VALUE
The instance is running.static int
STAGING_VALUE
All required resources have been allocated and the instance is being started.static int
STOPPED_VALUE
The instance has stopped successfully.static int
STOPPING_VALUE
The instance is currently stopping (either being deleted or killed).static int
SUSPENDED_VALUE
The instance has suspended.static int
SUSPENDING_VALUE
The instance is suspending.static int
TERMINATED_VALUE
The instance has stopped (either by explicit action or underlying failure).static int
UNDEFINED_STATUS_VALUE
A value indicating that the enum field is not set.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Instance.Status
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<Instance.Status>
internalGetValueMap()
static Instance.Status
valueOf(int value)
Deprecated.static Instance.Status
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static Instance.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static Instance.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDEFINED_STATUS
public static final Instance.Status UNDEFINED_STATUS
A value indicating that the enum field is not set.
UNDEFINED_STATUS = 0;
-
DEPROVISIONING
public static final Instance.Status DEPROVISIONING
The instance is halted and we are performing tear down tasks like network deprogramming, releasing quota, IP, tearing down disks etc.
DEPROVISIONING = 428935662;
-
PROVISIONING
public static final Instance.Status PROVISIONING
Resources are being allocated for the instance.
PROVISIONING = 290896621;
-
REPAIRING
public static final Instance.Status REPAIRING
The instance is in repair.
REPAIRING = 413483285;
-
RUNNING
public static final Instance.Status RUNNING
The instance is running.
RUNNING = 121282975;
-
STAGING
public static final Instance.Status STAGING
All required resources have been allocated and the instance is being started.
STAGING = 431072283;
-
STOPPED
public static final Instance.Status STOPPED
The instance has stopped successfully.
STOPPED = 444276141;
-
STOPPING
public static final Instance.Status STOPPING
The instance is currently stopping (either being deleted or killed).
STOPPING = 350791796;
-
SUSPENDED
public static final Instance.Status SUSPENDED
The instance has suspended.
SUSPENDED = 51223995;
-
SUSPENDING
public static final Instance.Status SUSPENDING
The instance is suspending.
SUSPENDING = 514206246;
-
TERMINATED
public static final Instance.Status TERMINATED
The instance has stopped (either by explicit action or underlying failure).
TERMINATED = 250018339;
-
UNRECOGNIZED
public static final Instance.Status UNRECOGNIZED
-
-
Field Detail
-
UNDEFINED_STATUS_VALUE
public static final int UNDEFINED_STATUS_VALUE
A value indicating that the enum field is not set.
UNDEFINED_STATUS = 0;
- See Also:
- Constant Field Values
-
DEPROVISIONING_VALUE
public static final int DEPROVISIONING_VALUE
The instance is halted and we are performing tear down tasks like network deprogramming, releasing quota, IP, tearing down disks etc.
DEPROVISIONING = 428935662;
- See Also:
- Constant Field Values
-
PROVISIONING_VALUE
public static final int PROVISIONING_VALUE
Resources are being allocated for the instance.
PROVISIONING = 290896621;
- See Also:
- Constant Field Values
-
REPAIRING_VALUE
public static final int REPAIRING_VALUE
The instance is in repair.
REPAIRING = 413483285;
- See Also:
- Constant Field Values
-
RUNNING_VALUE
public static final int RUNNING_VALUE
The instance is running.
RUNNING = 121282975;
- See Also:
- Constant Field Values
-
STAGING_VALUE
public static final int STAGING_VALUE
All required resources have been allocated and the instance is being started.
STAGING = 431072283;
- See Also:
- Constant Field Values
-
STOPPED_VALUE
public static final int STOPPED_VALUE
The instance has stopped successfully.
STOPPED = 444276141;
- See Also:
- Constant Field Values
-
STOPPING_VALUE
public static final int STOPPING_VALUE
The instance is currently stopping (either being deleted or killed).
STOPPING = 350791796;
- See Also:
- Constant Field Values
-
SUSPENDED_VALUE
public static final int SUSPENDED_VALUE
The instance has suspended.
SUSPENDED = 51223995;
- See Also:
- Constant Field Values
-
SUSPENDING_VALUE
public static final int SUSPENDING_VALUE
The instance is suspending.
SUSPENDING = 514206246;
- See Also:
- Constant Field Values
-
TERMINATED_VALUE
public static final int TERMINATED_VALUE
The instance has stopped (either by explicit action or underlying failure).
TERMINATED = 250018339;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Instance.Status[] 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 (Instance.Status c : Instance.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Instance.Status 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
-
getNumber
public final int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static Instance.Status valueOf(int value)
Deprecated.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:
value
- 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
-
forNumber
public static Instance.Status forNumber(int value)
- Parameters:
value
- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<Instance.Status> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static Instance.Status valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc
- 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
-
-