Show / Hide Table of Contents

Class UploadEmailSubdomainCertificateDetails

Add certificate for email subdomain

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

Properties

CertificateChainPem

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

Certificate chain PEM, including intermediate and root

CertificatePem

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

Certificate PEM

Remarks

Required

CommonName

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

fully qualified host name

Remarks

Required

In this article
Back to top