Show / Hide Table of Contents

Class CreateCertificateDetails

The information about a new Certificates.

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

Properties

CertificateContent

Declaration
[Required(ErrorMessage = "CertificateContent is required.")]
[JsonProperty(PropertyName = "certificateContent")]
public string CertificateContent { get; set; }
Property Value
Type Description
string

The base64 encoded content of the PEM file containing the SSL certificate.

Remarks

Required

Key

Declaration
[Required(ErrorMessage = "Key is required.")]
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.

Remarks

Required

In this article
Back to top