Show / Hide Table of Contents

Class UpdateCertificateConfigDetails

The details of the contents of the certificate and certificate metadata.

Inheritance
object
UpdateCertificateConfigDetails
UpdateCertificateByImportingConfigDetails
UpdateCertificateIssuedByInternalCaConfigDetails
UpdateCertificateManagedExternallyIssuedByInternalCaConfigDetails
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(UpdateCertificateConfigDetailsModelConverter))]
public class UpdateCertificateConfigDetails

Properties

Stage

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

The rotation state of the certificate. The default is CURRENT, meaning that the certificate is currently in use. A certificate version that you mark as PENDING is staged and available for use, but you don't yet want to rotate it into current, active use. For example, you might update a certificate 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

A name for the certificate version. When the value is not null, a name is unique across versions of a given certificate.

In this article
Back to top