Package com.google.appengine.v1
Enum Instance.Liveness.LivenessState
- java.lang.Object
-
- java.lang.Enum<Instance.Liveness.LivenessState>
-
- com.google.appengine.v1.Instance.Liveness.LivenessState
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<Instance.Liveness.LivenessState>
- Enclosing class:
- Instance.Liveness
public static enum Instance.Liveness.LivenessState extends Enum<Instance.Liveness.LivenessState> implements com.google.protobuf.ProtocolMessageEnum
Liveness health check status for Flex instances.
Protobuf enumgoogle.appengine.v1.Instance.Liveness.LivenessState
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DRAINING
The instance is being drained.HEALTHY
The instance is reachable i.e.LIVENESS_STATE_UNSPECIFIED
There is no liveness health check for the instance.TIMEOUT
The instance is unreachable i.e.UNHEALTHY
The instance is reachable, but does not conform to the requirements defined by the health check.UNKNOWN
The health checking system is aware of the instance but its health is not known at the moment.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
DRAINING_VALUE
The instance is being drained.static int
HEALTHY_VALUE
The instance is reachable i.e.static int
LIVENESS_STATE_UNSPECIFIED_VALUE
There is no liveness health check for the instance.static int
TIMEOUT_VALUE
The instance is unreachable i.e.static int
UNHEALTHY_VALUE
The instance is reachable, but does not conform to the requirements defined by the health check.static int
UNKNOWN_VALUE
The health checking system is aware of the instance but its health is not known at the moment.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Instance.Liveness.LivenessState
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.Liveness.LivenessState>
internalGetValueMap()
static Instance.Liveness.LivenessState
valueOf(int value)
Deprecated.static Instance.Liveness.LivenessState
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static Instance.Liveness.LivenessState
valueOf(String name)
Returns the enum constant of this type with the specified name.static Instance.Liveness.LivenessState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LIVENESS_STATE_UNSPECIFIED
public static final Instance.Liveness.LivenessState LIVENESS_STATE_UNSPECIFIED
There is no liveness health check for the instance. Only applicable for instances in App Engine standard environment.
LIVENESS_STATE_UNSPECIFIED = 0;
-
UNKNOWN
public static final Instance.Liveness.LivenessState UNKNOWN
The health checking system is aware of the instance but its health is not known at the moment.
UNKNOWN = 1;
-
HEALTHY
public static final Instance.Liveness.LivenessState HEALTHY
The instance is reachable i.e. a connection to the application health checking endpoint can be established, and conforms to the requirements defined by the health check.
HEALTHY = 2;
-
UNHEALTHY
public static final Instance.Liveness.LivenessState UNHEALTHY
The instance is reachable, but does not conform to the requirements defined by the health check.
UNHEALTHY = 3;
-
DRAINING
public static final Instance.Liveness.LivenessState DRAINING
The instance is being drained. The existing connections to the instance have time to complete, but the new ones are being refused.
DRAINING = 4;
-
TIMEOUT
public static final Instance.Liveness.LivenessState TIMEOUT
The instance is unreachable i.e. a connection to the application health checking endpoint cannot be established, or the server does not respond within the specified timeout.
TIMEOUT = 5;
-
UNRECOGNIZED
public static final Instance.Liveness.LivenessState UNRECOGNIZED
-
-
Field Detail
-
LIVENESS_STATE_UNSPECIFIED_VALUE
public static final int LIVENESS_STATE_UNSPECIFIED_VALUE
There is no liveness health check for the instance. Only applicable for instances in App Engine standard environment.
LIVENESS_STATE_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
UNKNOWN_VALUE
public static final int UNKNOWN_VALUE
The health checking system is aware of the instance but its health is not known at the moment.
UNKNOWN = 1;
- See Also:
- Constant Field Values
-
HEALTHY_VALUE
public static final int HEALTHY_VALUE
The instance is reachable i.e. a connection to the application health checking endpoint can be established, and conforms to the requirements defined by the health check.
HEALTHY = 2;
- See Also:
- Constant Field Values
-
UNHEALTHY_VALUE
public static final int UNHEALTHY_VALUE
The instance is reachable, but does not conform to the requirements defined by the health check.
UNHEALTHY = 3;
- See Also:
- Constant Field Values
-
DRAINING_VALUE
public static final int DRAINING_VALUE
The instance is being drained. The existing connections to the instance have time to complete, but the new ones are being refused.
DRAINING = 4;
- See Also:
- Constant Field Values
-
TIMEOUT_VALUE
public static final int TIMEOUT_VALUE
The instance is unreachable i.e. a connection to the application health checking endpoint cannot be established, or the server does not respond within the specified timeout.
TIMEOUT = 5;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Instance.Liveness.LivenessState[] 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.Liveness.LivenessState c : Instance.Liveness.LivenessState.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.Liveness.LivenessState 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.Liveness.LivenessState 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.Liveness.LivenessState 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.Liveness.LivenessState> 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.Liveness.LivenessState 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
-
-