class Google::Apis::PrivatecaV1::IssuanceModes

IssuanceModes specifies the allowed ways in which Certificates may be requested from this CaPool.

Attributes

allow_config_based_issuance[RW]

Optional. When true, allows callers to create Certificates by specifying a CertificateConfig. Corresponds to the JSON property `allowConfigBasedIssuance` @return [Boolean]

allow_config_based_issuance?[RW]

Optional. When true, allows callers to create Certificates by specifying a CertificateConfig. Corresponds to the JSON property `allowConfigBasedIssuance` @return [Boolean]

allow_csr_based_issuance[RW]

Optional. When true, allows callers to create Certificates by specifying a CSR. Corresponds to the JSON property `allowCsrBasedIssuance` @return [Boolean]

allow_csr_based_issuance?[RW]

Optional. When true, allows callers to create Certificates by specifying a CSR. Corresponds to the JSON property `allowCsrBasedIssuance` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/privateca_v1/classes.rb, line 1261
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 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