Class: Google::Cloud::Security::PrivateCA::V1::CaPool::PublishingOptions
- Inherits:
-
Object
- Object
- Google::Cloud::Security::PrivateCA::V1::CaPool::PublishingOptions
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/security/privateca/v1/resources.rb
Overview
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.
Defined Under Namespace
Modules: EncodingFormat
Instance Attribute Summary collapse
-
#encoding_format ⇒ ::Google::Cloud::Security::PrivateCA::V1::CaPool::PublishingOptions::EncodingFormat
Optional.
-
#publish_ca_cert ⇒ ::Boolean
Optional.
-
#publish_crl ⇒ ::Boolean
Optional.
Instance Attribute Details
#encoding_format ⇒ ::Google::Cloud::Security::PrivateCA::V1::CaPool::PublishingOptions::EncodingFormat
Returns Optional. Specifies the encoding format of each CertificateAuthority resource's CA certificate and CRLs. If this is omitted, CA certificates and CRLs will be published in PEM.
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 |
# File 'proto_docs/google/cloud/security/privateca/v1/resources.rb', line 362 class PublishingOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Supported encoding formats for publishing. module EncodingFormat # Not specified. By default, PEM format will be used. ENCODING_FORMAT_UNSPECIFIED = 0 # The # {::Google::Cloud::Security::PrivateCA::V1::CertificateAuthority CertificateAuthority}'s # CA certificate and CRLs will be published in PEM format. PEM = 1 # The # {::Google::Cloud::Security::PrivateCA::V1::CertificateAuthority CertificateAuthority}'s # CA certificate and CRLs will be published in DER format. DER = 2 end end |
#publish_ca_cert ⇒ ::Boolean
Returns 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.
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 |
# File 'proto_docs/google/cloud/security/privateca/v1/resources.rb', line 362 class PublishingOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Supported encoding formats for publishing. module EncodingFormat # Not specified. By default, PEM format will be used. ENCODING_FORMAT_UNSPECIFIED = 0 # The # {::Google::Cloud::Security::PrivateCA::V1::CertificateAuthority CertificateAuthority}'s # CA certificate and CRLs will be published in PEM format. PEM = 1 # The # {::Google::Cloud::Security::PrivateCA::V1::CertificateAuthority CertificateAuthority}'s # CA certificate and CRLs will be published in DER format. DER = 2 end end |
#publish_crl ⇒ ::Boolean
Returns 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.
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 |
# File 'proto_docs/google/cloud/security/privateca/v1/resources.rb', line 362 class PublishingOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Supported encoding formats for publishing. module EncodingFormat # Not specified. By default, PEM format will be used. ENCODING_FORMAT_UNSPECIFIED = 0 # The # {::Google::Cloud::Security::PrivateCA::V1::CertificateAuthority CertificateAuthority}'s # CA certificate and CRLs will be published in PEM format. PEM = 1 # The # {::Google::Cloud::Security::PrivateCA::V1::CertificateAuthority CertificateAuthority}'s # CA certificate and CRLs will be published in DER format. DER = 2 end end |