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 and 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.
|
Modifier and Type | Method and 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.
|
public static final CredentialRotationStatus.StatusDetails IssuingNewCredentials
public static final CredentialRotationStatus.StatusDetails NewCredentialsIssued
public static final CredentialRotationStatus.StatusDetails RetiringOldCredentials
public static final CredentialRotationStatus.StatusDetails Completed
public static final CredentialRotationStatus.StatusDetails UnknownEnumValue
public static CredentialRotationStatus.StatusDetails[] values()
for (CredentialRotationStatus.StatusDetails c : CredentialRotationStatus.StatusDetails.values()) System.out.println(c);
public static CredentialRotationStatus.StatusDetails valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static CredentialRotationStatus.StatusDetails create(String key)
Copyright © 2016–2024. All rights reserved.