Show / Hide Table of Contents

Class CredentialRotationStatus

Information regarding cluster's credential rotation.

Inheritance
object
CredentialRotationStatus
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ContainerengineService.Models
Assembly: OCI.DotNetSDK.Containerengine.dll
Syntax
public class CredentialRotationStatus

Properties

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CredentialRotationStatus.StatusEnum? Status { get; set; }
Property Value
Type Description
CredentialRotationStatus.StatusEnum?

Credential rotation status of a kubernetes cluster IN_PROGRESS: Issuing new credentials to kubernetes cluster control plane and worker nodes or retiring old credentials from kubernetes cluster control plane and worker nodes. WAITING: Waiting for customer to invoke the complete rotation action or the automcatic complete rotation action. COMPLETED: New credentials are functional on kuberentes cluster.

Remarks

Required

StatusDetails

Declaration
[Required(ErrorMessage = "StatusDetails is required.")]
[JsonProperty(PropertyName = "statusDetails")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CredentialRotationStatus.StatusDetailsEnum? StatusDetails { get; set; }
Property Value
Type Description
CredentialRotationStatus.StatusDetailsEnum?

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.

Remarks

Required

TimeAutoCompletionScheduled

Declaration
[JsonProperty(PropertyName = "timeAutoCompletionScheduled")]
public DateTime? TimeAutoCompletionScheduled { get; set; }
Property Value
Type Description
DateTime?

The time by which retirement of old credentials should start.

In this article
Back to top