class Google::Apis::PrivatecaV1::PublishingOptions

Options relating to the publication of each CertificateAuthority's CA certificate and CRLs and their inclusion as extensions in issued Certificates. The options set here apply to certificates issued by any CertificateAuthority in the CaPool.

Attributes

publish_ca_cert[RW]

Optional. When true, publishes each CertificateAuthority's CA certificate and includes its URL in the “Authority Information Access” X.509 extension in all issued Certificates. If this is false, the CA certificate will not be published and the corresponding X.509 extension will not be written in issued certificates. Corresponds to the JSON property `publishCaCert` @return [Boolean]

publish_ca_cert?[RW]

Optional. When true, publishes each CertificateAuthority's CA certificate and includes its URL in the “Authority Information Access” X.509 extension in all issued Certificates. If this is false, the CA certificate will not be published and the corresponding X.509 extension will not be written in issued certificates. Corresponds to the JSON property `publishCaCert` @return [Boolean]

publish_crl[RW]

Optional. When true, publishes each CertificateAuthority's CRL and includes its URL in the “CRL Distribution Points” X.509 extension in all issued Certificates. If this is false, CRLs will not be published and the corresponding X.509 extension will not be written in issued certificates. CRLs will expire 7 days from their creation. However, we will rebuild daily. CRLs are also rebuilt shortly after a certificate is revoked. Corresponds to the JSON property `publishCrl` @return [Boolean]

publish_crl?[RW]

Optional. When true, publishes each CertificateAuthority's CRL and includes its URL in the “CRL Distribution Points” X.509 extension in all issued Certificates. If this is false, CRLs will not be published and the corresponding X.509 extension will not be written in issued certificates. CRLs will expire 7 days from their creation. However, we will rebuild daily. CRLs are also rebuilt shortly after a certificate is revoked. Corresponds to the JSON property `publishCrl` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/privateca_v1/classes.rb, line 2040
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/privateca_v1/classes.rb, line 2045
def update!(**args)
  @publish_ca_cert = args[:publish_ca_cert] if args.key?(:publish_ca_cert)
  @publish_crl = args[:publish_crl] if args.key?(:publish_crl)
end