Enum UpdateCertificateAuthorityConfigDetails.Stage
- java.lang.Object
-
- java.lang.Enum<UpdateCertificateAuthorityConfigDetails.Stage>
-
- com.oracle.bmc.certificatesmanagement.model.UpdateCertificateAuthorityConfigDetails.Stage
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<UpdateCertificateAuthorityConfigDetails.Stage>
- Enclosing class:
- UpdateCertificateAuthorityConfigDetails
public static enum UpdateCertificateAuthorityConfigDetails.Stage extends Enum<UpdateCertificateAuthorityConfigDetails.Stage> implements BmcEnum
The rotation state of the CA.The default is PENDING, meaning that the CA is staged and available for use. A CA version that you mark as CURRENT is currently in use, but you don’t yet want to rotate it into current, active use. For example, you might create or update a CA and mark its rotation state as PENDING if you haven’t yet updated the certificate on the target system.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UpdateCertificateAuthorityConfigDetails.Stage
create(String key)
String
getValue()
static UpdateCertificateAuthorityConfigDetails.Stage
valueOf(String name)
Returns the enum constant of this type with the specified name.static UpdateCertificateAuthorityConfigDetails.Stage[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Current
public static final UpdateCertificateAuthorityConfigDetails.Stage Current
-
Pending
public static final UpdateCertificateAuthorityConfigDetails.Stage Pending
-
-
Method Detail
-
values
public static UpdateCertificateAuthorityConfigDetails.Stage[] 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 (UpdateCertificateAuthorityConfigDetails.Stage c : UpdateCertificateAuthorityConfigDetails.Stage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdateCertificateAuthorityConfigDetails.Stage 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
-
create
public static UpdateCertificateAuthorityConfigDetails.Stage create(String key)
-
-