Package com.google.cloud.config.v1
Enum Deployment.State
- java.lang.Object
-
- java.lang.Enum<Deployment.State>
-
- com.google.cloud.config.v1.Deployment.State
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<Deployment.State>
- Enclosing class:
- Deployment
public static enum Deployment.State extends Enum<Deployment.State> implements com.google.protobuf.ProtocolMessageEnum
Possible states of a deployment.
Protobuf enumgoogle.cloud.config.v1.Deployment.State
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE
The deployment is healthy.CREATING
The deployment is being created.DELETED
The deployment has been deleted.DELETING
The deployment is being deleted.FAILED
The deployment has encountered an unexpected error.STATE_UNSPECIFIED
The default value.SUSPENDED
The deployment is no longer being actively reconciled.UNRECOGNIZED
UPDATING
The deployment is being updated.
-
Field Summary
Fields Modifier and Type Field Description static int
ACTIVE_VALUE
The deployment is healthy.static int
CREATING_VALUE
The deployment is being created.static int
DELETED_VALUE
The deployment has been deleted.static int
DELETING_VALUE
The deployment is being deleted.static int
FAILED_VALUE
The deployment has encountered an unexpected error.static int
STATE_UNSPECIFIED_VALUE
The default value.static int
SUSPENDED_VALUE
The deployment is no longer being actively reconciled.static int
UPDATING_VALUE
The deployment is being updated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Deployment.State
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<Deployment.State>
internalGetValueMap()
static Deployment.State
valueOf(int value)
Deprecated.static Deployment.State
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static Deployment.State
valueOf(String name)
Returns the enum constant of this type with the specified name.static Deployment.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATE_UNSPECIFIED
public static final Deployment.State STATE_UNSPECIFIED
The default value. This value is used if the state is omitted.
STATE_UNSPECIFIED = 0;
-
CREATING
public static final Deployment.State CREATING
The deployment is being created.
CREATING = 1;
-
ACTIVE
public static final Deployment.State ACTIVE
The deployment is healthy.
ACTIVE = 2;
-
UPDATING
public static final Deployment.State UPDATING
The deployment is being updated.
UPDATING = 3;
-
DELETING
public static final Deployment.State DELETING
The deployment is being deleted.
DELETING = 4;
-
FAILED
public static final Deployment.State FAILED
The deployment has encountered an unexpected error.
FAILED = 5;
-
SUSPENDED
public static final Deployment.State SUSPENDED
The deployment is no longer being actively reconciled. This may be the result of recovering the project after deletion.
SUSPENDED = 6;
-
DELETED
public static final Deployment.State DELETED
The deployment has been deleted.
DELETED = 7;
-
UNRECOGNIZED
public static final Deployment.State UNRECOGNIZED
-
-
Field Detail
-
STATE_UNSPECIFIED_VALUE
public static final int STATE_UNSPECIFIED_VALUE
The default value. This value is used if the state is omitted.
STATE_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
CREATING_VALUE
public static final int CREATING_VALUE
The deployment is being created.
CREATING = 1;
- See Also:
- Constant Field Values
-
ACTIVE_VALUE
public static final int ACTIVE_VALUE
The deployment is healthy.
ACTIVE = 2;
- See Also:
- Constant Field Values
-
UPDATING_VALUE
public static final int UPDATING_VALUE
The deployment is being updated.
UPDATING = 3;
- See Also:
- Constant Field Values
-
DELETING_VALUE
public static final int DELETING_VALUE
The deployment is being deleted.
DELETING = 4;
- See Also:
- Constant Field Values
-
FAILED_VALUE
public static final int FAILED_VALUE
The deployment has encountered an unexpected error.
FAILED = 5;
- See Also:
- Constant Field Values
-
SUSPENDED_VALUE
public static final int SUSPENDED_VALUE
The deployment is no longer being actively reconciled. This may be the result of recovering the project after deletion.
SUSPENDED = 6;
- See Also:
- Constant Field Values
-
DELETED_VALUE
public static final int DELETED_VALUE
The deployment has been deleted.
DELETED = 7;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Deployment.State[] 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 (Deployment.State c : Deployment.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Deployment.State 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 Deployment.State 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 Deployment.State 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<Deployment.State> 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 Deployment.State 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
-
-