Show / Hide Table of Contents

Class RotateCloudAutonomousVmClusterSslCertsDetails

The details for configuring the SSL certificates on Cloud Autonomous VM Cluster

Inheritance
object
RotateCloudAutonomousVmClusterSslCertsDetails
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 RotateCloudAutonomousVmClusterSslCertsDetails

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 RotateCloudAutonomousVmClusterSslCertsDetails.CertificateGenerationTypeEnum? CertificateGenerationType { get; set; }
Property Value
Type Description
RotateCloudAutonomousVmClusterSslCertsDetails.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