Show / Hide Table of Contents

Class CertificateSubjectAlternativeName

A subject alternative name for the certificate that binds additional or alternate names to the subject of the certificate. In the certificate, the alternate subject name format is "type:name".

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

Properties

Type

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

The subject alternative name type. Currently only DNS domain or host names and IP addresses are supported.

Remarks

Required

Value

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

The subject alternative name.

Remarks

Required

In this article
Back to top