Show / Hide Table of Contents

Class CertificateConfig.Types.SubjectConfig

These values are used to create the distinguished name and subject alternative name fields in an X.509 certificate.

Inheritance
System.Object
CertificateConfig.Types.SubjectConfig
Implements
IMessage<CertificateConfig.Types.SubjectConfig>
System.IEquatable<CertificateConfig.Types.SubjectConfig>
IDeepCloneable<CertificateConfig.Types.SubjectConfig>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.Security.PrivateCA.V1Beta1
Assembly: Google.Cloud.Security.PrivateCA.V1Beta1.dll
Syntax
public sealed class SubjectConfig : IMessage<CertificateConfig.Types.SubjectConfig>, IEquatable<CertificateConfig.Types.SubjectConfig>, IDeepCloneable<CertificateConfig.Types.SubjectConfig>, IBufferMessage, IMessage

Constructors

SubjectConfig()

Declaration
public SubjectConfig()

SubjectConfig(CertificateConfig.Types.SubjectConfig)

Declaration
public SubjectConfig(CertificateConfig.Types.SubjectConfig other)
Parameters
Type Name Description
CertificateConfig.Types.SubjectConfig other

Properties

CommonName

Optional. The "common name" of the distinguished name.

Declaration
public string CommonName { get; set; }
Property Value
Type Description
System.String

Subject

Required. Contains distinguished name fields such as the location and organization.

Declaration
public Subject Subject { get; set; }
Property Value
Type Description
Subject

SubjectAltName

Optional. The subject alternative name fields.

Declaration
public SubjectAltNames SubjectAltName { get; set; }
Property Value
Type Description
SubjectAltNames
Back to top