Show / Hide Table of Contents

Class RotateAutonomousVmClusterOrdsCertsDetails

The details for configuring the SSL certificates on Autonomous VM Cluster

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

Properties

CaBundleId

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

The OCID of the certificate bundle.

CertificateAuthorityId

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

The OCID of the certificate authority.

CertificateGenerationType

Declaration
[Required(ErrorMessage = "CertificateGenerationType is required.")]
[JsonProperty(PropertyName = "certificateGenerationType")]
[JsonConverter(typeof(StringEnumConverter))]
public RotateAutonomousVmClusterOrdsCertsDetails.CertificateGenerationTypeEnum? CertificateGenerationType { get; set; }
Property Value
Type Description
RotateAutonomousVmClusterOrdsCertsDetails.CertificateGenerationTypeEnum?

Specify SYSTEM to use Oracle-managed certificates. Specify BYOC when you want to bring your own certificate.

Remarks

Required

CertificateId

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

The OCID of the certificate to use.

In this article
Back to top