class Google::Apis::PrivatecaV1beta1::IssuanceModes
IssuanceModes
specifies the allowed ways in which Certificates may be requested from this CertificateAuthority
.
Attributes
Required. When true, allows callers to create Certificates by specifying a CertificateConfig
. Corresponds to the JSON property `allowConfigBasedIssuance` @return [Boolean]
Required. When true, allows callers to create Certificates by specifying a CertificateConfig
. Corresponds to the JSON property `allowConfigBasedIssuance` @return [Boolean]
Required. When true, allows callers to create Certificates by specifying a CSR. Corresponds to the JSON property `allowCsrBasedIssuance` @return [Boolean]
Required. 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_v1beta1/classes.rb, line 1075 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/privateca_v1beta1/classes.rb, line 1080 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