Package com.google.appengine.v1
Enum ManagementStatus
- java.lang.Object
-
- java.lang.Enum<ManagementStatus>
-
- com.google.appengine.v1.ManagementStatus
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<ManagementStatus>
public enum ManagementStatus extends Enum<ManagementStatus> implements com.google.protobuf.ProtocolMessageEnum
State of certificate management. Refers to the most recent certificate acquisition or renewal attempt.
Protobuf enumgoogle.appengine.v1.ManagementStatus
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAILED_PERMANENT
All renewal attempts have been exhausted, likely due to an invalid DNS setup.FAILED_RETRYING_CAA_CHECKING
Most recent renewal failed due to a CAA retrieval failure.FAILED_RETRYING_CAA_FORBIDDEN
Most recent renewal failed due to an explicit CAA record that does not include one of the in-use CAs (Google CA and Let's Encrypt).FAILED_RETRYING_NOT_VISIBLE
Most recent renewal failed due to an invalid DNS setup and will be retried.MANAGEMENT_STATUS_UNSPECIFIED
MANAGEMENT_STATUS_UNSPECIFIED = 0;
OK
Certificate was successfully obtained and inserted into the serving system.PENDING
Certificate is under active attempts to acquire or renew.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
FAILED_PERMANENT_VALUE
All renewal attempts have been exhausted, likely due to an invalid DNS setup.static int
FAILED_RETRYING_CAA_CHECKING_VALUE
Most recent renewal failed due to a CAA retrieval failure.static int
FAILED_RETRYING_CAA_FORBIDDEN_VALUE
Most recent renewal failed due to an explicit CAA record that does not include one of the in-use CAs (Google CA and Let's Encrypt).static int
FAILED_RETRYING_NOT_VISIBLE_VALUE
Most recent renewal failed due to an invalid DNS setup and will be retried.static int
MANAGEMENT_STATUS_UNSPECIFIED_VALUE
MANAGEMENT_STATUS_UNSPECIFIED = 0;
static int
OK_VALUE
Certificate was successfully obtained and inserted into the serving system.static int
PENDING_VALUE
Certificate is under active attempts to acquire or renew.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ManagementStatus
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<ManagementStatus>
internalGetValueMap()
static ManagementStatus
valueOf(int value)
Deprecated.static ManagementStatus
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static ManagementStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static ManagementStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MANAGEMENT_STATUS_UNSPECIFIED
public static final ManagementStatus MANAGEMENT_STATUS_UNSPECIFIED
MANAGEMENT_STATUS_UNSPECIFIED = 0;
-
OK
public static final ManagementStatus OK
Certificate was successfully obtained and inserted into the serving system.
OK = 1;
-
PENDING
public static final ManagementStatus PENDING
Certificate is under active attempts to acquire or renew.
PENDING = 2;
-
FAILED_RETRYING_NOT_VISIBLE
public static final ManagementStatus FAILED_RETRYING_NOT_VISIBLE
Most recent renewal failed due to an invalid DNS setup and will be retried. Renewal attempts will continue to fail until the certificate domain's DNS configuration is fixed. The last successfully provisioned certificate may still be serving.
FAILED_RETRYING_NOT_VISIBLE = 4;
-
FAILED_PERMANENT
public static final ManagementStatus FAILED_PERMANENT
All renewal attempts have been exhausted, likely due to an invalid DNS setup.
FAILED_PERMANENT = 6;
-
FAILED_RETRYING_CAA_FORBIDDEN
public static final ManagementStatus FAILED_RETRYING_CAA_FORBIDDEN
Most recent renewal failed due to an explicit CAA record that does not include one of the in-use CAs (Google CA and Let's Encrypt). Renewals will continue to fail until the CAA is reconfigured. The last successfully provisioned certificate may still be serving.
FAILED_RETRYING_CAA_FORBIDDEN = 7;
-
FAILED_RETRYING_CAA_CHECKING
public static final ManagementStatus FAILED_RETRYING_CAA_CHECKING
Most recent renewal failed due to a CAA retrieval failure. This means that the domain's DNS provider does not properly handle CAA records, failing requests for CAA records when no CAA records are defined. Renewals will continue to fail until the DNS provider is changed or a CAA record is added for the given domain. The last successfully provisioned certificate may still be serving.
FAILED_RETRYING_CAA_CHECKING = 8;
-
UNRECOGNIZED
public static final ManagementStatus UNRECOGNIZED
-
-
Field Detail
-
MANAGEMENT_STATUS_UNSPECIFIED_VALUE
public static final int MANAGEMENT_STATUS_UNSPECIFIED_VALUE
MANAGEMENT_STATUS_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
OK_VALUE
public static final int OK_VALUE
Certificate was successfully obtained and inserted into the serving system.
OK = 1;
- See Also:
- Constant Field Values
-
PENDING_VALUE
public static final int PENDING_VALUE
Certificate is under active attempts to acquire or renew.
PENDING = 2;
- See Also:
- Constant Field Values
-
FAILED_RETRYING_NOT_VISIBLE_VALUE
public static final int FAILED_RETRYING_NOT_VISIBLE_VALUE
Most recent renewal failed due to an invalid DNS setup and will be retried. Renewal attempts will continue to fail until the certificate domain's DNS configuration is fixed. The last successfully provisioned certificate may still be serving.
FAILED_RETRYING_NOT_VISIBLE = 4;
- See Also:
- Constant Field Values
-
FAILED_PERMANENT_VALUE
public static final int FAILED_PERMANENT_VALUE
All renewal attempts have been exhausted, likely due to an invalid DNS setup.
FAILED_PERMANENT = 6;
- See Also:
- Constant Field Values
-
FAILED_RETRYING_CAA_FORBIDDEN_VALUE
public static final int FAILED_RETRYING_CAA_FORBIDDEN_VALUE
Most recent renewal failed due to an explicit CAA record that does not include one of the in-use CAs (Google CA and Let's Encrypt). Renewals will continue to fail until the CAA is reconfigured. The last successfully provisioned certificate may still be serving.
FAILED_RETRYING_CAA_FORBIDDEN = 7;
- See Also:
- Constant Field Values
-
FAILED_RETRYING_CAA_CHECKING_VALUE
public static final int FAILED_RETRYING_CAA_CHECKING_VALUE
Most recent renewal failed due to a CAA retrieval failure. This means that the domain's DNS provider does not properly handle CAA records, failing requests for CAA records when no CAA records are defined. Renewals will continue to fail until the DNS provider is changed or a CAA record is added for the given domain. The last successfully provisioned certificate may still be serving.
FAILED_RETRYING_CAA_CHECKING = 8;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ManagementStatus[] 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 (ManagementStatus c : ManagementStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ManagementStatus 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 ManagementStatus 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 ManagementStatus 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<ManagementStatus> 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 ManagementStatus 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
-
-