Show / Hide Table of Contents

Class UpdateCertificateAuthorityConfigDetails

The configuration details for updating a certificate authority (CA).

Inheritance
object
UpdateCertificateAuthorityConfigDetails
UpdateRootCaByGeneratingInternallyConfigDetails
UpdateSubordinateCaIssuedByInternalCaConfigDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CertificatesmanagementService.Models
Assembly: OCI.DotNetSDK.Certificatesmanagement.dll
Syntax
[JsonConverter(typeof(UpdateCertificateAuthorityConfigDetailsModelConverter))]
public class UpdateCertificateAuthorityConfigDetails

Properties

Stage

Declaration
[JsonProperty(PropertyName = "stage")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateCertificateAuthorityConfigDetails.StageEnum? Stage { get; set; }
Property Value
Type Description
UpdateCertificateAuthorityConfigDetails.StageEnum?

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.

VersionName

Declaration
[JsonProperty(PropertyName = "versionName")]
public string VersionName { get; set; }
Property Value
Type Description
string

The name of the CA version. When the value is not null, a name is unique across versions of a given CA.

In this article
Back to top