Enum Instance.Liveness.LivenessState

    • 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;
    • 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 name
        NullPointerException - if the argument is null
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.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 name
        NullPointerException - 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.
      • getValueDescriptor

        public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
        Specified by:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.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 name
        NullPointerException - if the argument is null