Enum CredentialRotationStatus.StatusDetails
- java.lang.Object
-
- java.lang.Enum<CredentialRotationStatus.StatusDetails>
-
- com.oracle.bmc.containerengine.model.CredentialRotationStatus.StatusDetails
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<CredentialRotationStatus.StatusDetails>
- Enclosing class:
- CredentialRotationStatus
public static enum CredentialRotationStatus.StatusDetails extends Enum<CredentialRotationStatus.StatusDetails> implements BmcEnum
Details of a kuberenetes cluster credential rotation status: ISSUING_NEW_CREDENTIALS: Credential rotation is in progress.Starting to issue new credentials to kubernetes cluster control plane and worker nodes. NEW_CREDENTIALS_ISSUED: New credentials are added. At this stage cluster has both old and new credentials and is awaiting old credentials retirement. RETIRING_OLD_CREDENTIALS: Retirement of old credentials is in progress. Starting to remove old credentials from kubernetes cluster control plane and worker nodes. COMPLETED: Credential rotation is complete. Old credentials are retired.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Completed
IssuingNewCredentials
NewCredentialsIssued
RetiringOldCredentials
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CredentialRotationStatus.StatusDetails
create(String key)
String
getValue()
static CredentialRotationStatus.StatusDetails
valueOf(String name)
Returns the enum constant of this type with the specified name.static CredentialRotationStatus.StatusDetails[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IssuingNewCredentials
public static final CredentialRotationStatus.StatusDetails IssuingNewCredentials
-
NewCredentialsIssued
public static final CredentialRotationStatus.StatusDetails NewCredentialsIssued
-
RetiringOldCredentials
public static final CredentialRotationStatus.StatusDetails RetiringOldCredentials
-
Completed
public static final CredentialRotationStatus.StatusDetails Completed
-
UnknownEnumValue
public static final CredentialRotationStatus.StatusDetails UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static CredentialRotationStatus.StatusDetails[] 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 (CredentialRotationStatus.StatusDetails c : CredentialRotationStatus.StatusDetails.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CredentialRotationStatus.StatusDetails 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 CredentialRotationStatus.StatusDetails create(String key)
-
-