Show / Hide Table of Contents

Class CertificateSubjectName

The entity to be secured by the certificate.

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

Properties

CommonName

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

The fully qualified domain name used for DNS lookups of the server.

Country

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

ISO 3166-1 alpha-2 code of the country where the organization is located. For a list of codes, see ISO's website.

EmailAddress

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

The email address of the server's administrator.

Locality

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

The city in which the organization is located.

Organization

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

The organization name.

OrganizationalUnit

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

The field to differentiate between divisions within an organization.

StateProvince

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

The province where the organization is located.

In this article
Back to top