class Google::Apis::PrivatecaV1::IssuanceModes
IssuanceModes
specifies the allowed ways in which Certificates may be requested from this CaPool
.
Attributes
Optional. When true, allows callers to create Certificates by specifying a CertificateConfig
. Corresponds to the JSON property `allowConfigBasedIssuance` @return [Boolean]
Optional. When true, allows callers to create Certificates by specifying a CertificateConfig
. Corresponds to the JSON property `allowConfigBasedIssuance` @return [Boolean]
Optional. When true, allows callers to create Certificates by specifying a CSR. Corresponds to the JSON property `allowCsrBasedIssuance` @return [Boolean]
Optional. When true, allows callers to create Certificates by specifying a CSR. Corresponds to the JSON property `allowCsrBasedIssuance` @return [Boolean]
Public Class Methods
# File lib/google/apis/privateca_v1/classes.rb, line 1261 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/privateca_v1/classes.rb, line 1266 def update!(**args) @allow_config_based_issuance = args[:allow_config_based_issuance] if args.key?(:allow_config_based_issuance) @allow_csr_based_issuance = args[:allow_csr_based_issuance] if args.key?(:allow_csr_based_issuance) end