Show / Hide Table of Contents

Class SecureConnectionDetails

Secure connection configuration details.

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

Properties

CertificateGenerationType

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

Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).

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