Show / Hide Table of Contents

Class RotateCloudAutonomousVmClusterOrdsCertsDetails

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

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

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