Show / Hide Table of Contents

Class CertificateAuthority.Types.IssuingOptions

Options that affect all certificates issued by a [CertificateAuthority][google.cloud.security.privateca.v1beta1.CertificateAuthority].

Inheritance
System.Object
CertificateAuthority.Types.IssuingOptions
Implements
IMessage<CertificateAuthority.Types.IssuingOptions>
System.IEquatable<CertificateAuthority.Types.IssuingOptions>
IDeepCloneable<CertificateAuthority.Types.IssuingOptions>
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 IssuingOptions : IMessage<CertificateAuthority.Types.IssuingOptions>, IEquatable<CertificateAuthority.Types.IssuingOptions>, IDeepCloneable<CertificateAuthority.Types.IssuingOptions>, IBufferMessage, IMessage

Constructors

IssuingOptions()

Declaration
public IssuingOptions()

IssuingOptions(CertificateAuthority.Types.IssuingOptions)

Declaration
public IssuingOptions(CertificateAuthority.Types.IssuingOptions other)
Parameters
Type Name Description
CertificateAuthority.Types.IssuingOptions other

Properties

IncludeCaCertUrl

Required. When true, includes a URL to the issuing CA certificate in the "authority information access" X.509 extension.

Declaration
public bool IncludeCaCertUrl { get; set; }
Property Value
Type Description
System.Boolean

IncludeCrlAccessUrl

Required. When true, includes a URL to the CRL corresponding to certificates issued from a [CertificateAuthority][google.cloud.security.privateca.v1beta1.CertificateAuthority]. CRLs will expire 7 days from their creation. However, we will rebuild daily. CRLs are also rebuilt shortly after a certificate is revoked.

Declaration
public bool IncludeCrlAccessUrl { get; set; }
Property Value
Type Description
System.Boolean
Back to top