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 SummaryEnum Constants Enum Constant Description CompletedIssuingNewCredentialsNewCredentialsIssuedRetiringOldCredentialsUnknownEnumValueThis value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CredentialRotationStatus.StatusDetailscreate(String key)StringgetValue()static CredentialRotationStatus.StatusDetailsvalueOf(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- 
IssuingNewCredentialspublic static final CredentialRotationStatus.StatusDetails IssuingNewCredentials 
 - 
NewCredentialsIssuedpublic static final CredentialRotationStatus.StatusDetails NewCredentialsIssued 
 - 
RetiringOldCredentialspublic static final CredentialRotationStatus.StatusDetails RetiringOldCredentials 
 - 
Completedpublic static final CredentialRotationStatus.StatusDetails Completed 
 - 
UnknownEnumValuepublic 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- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
createpublic static CredentialRotationStatus.StatusDetails create(String key) 
 
- 
 
-