Class: Google::Apis::PrivatecaV1::KeyVersionSpec
- Inherits:
-
Object
- Object
- Google::Apis::PrivatecaV1::KeyVersionSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/privateca_v1/classes.rb,
lib/google/apis/privateca_v1/representations.rb,
lib/google/apis/privateca_v1/representations.rb
Overview
A Cloud KMS key configuration that a CertificateAuthority will use.
Instance Attribute Summary collapse
-
#algorithm ⇒ String
The algorithm to use for creating a managed Cloud KMS key for a for a simplified experience.
-
#cloud_kms_key_version ⇒ String
The resource name for an existing Cloud KMS CryptoKeyVersion in the format
projects/*/locations/*/keyRings/*/cryptoKeys/*/cryptoKeyVersions/*
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ KeyVersionSpec
constructor
A new instance of KeyVersionSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ KeyVersionSpec
Returns a new instance of KeyVersionSpec.
1581 1582 1583 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1581 def initialize(**args) update!(**args) end |
Instance Attribute Details
#algorithm ⇒ String
The algorithm to use for creating a managed Cloud KMS key for a for a
simplified experience. All managed keys will be have their ProtectionLevel as
HSM
.
Corresponds to the JSON property algorithm
1572 1573 1574 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1572 def algorithm @algorithm end |
#cloud_kms_key_version ⇒ String
The resource name for an existing Cloud KMS CryptoKeyVersion in the format
projects/*/locations/*/keyRings/*/cryptoKeys/*/cryptoKeyVersions/*
. This
option enables full flexibility in the key's capabilities and properties.
Corresponds to the JSON property cloudKmsKeyVersion
1579 1580 1581 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1579 def cloud_kms_key_version @cloud_kms_key_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1586 1587 1588 1589 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 1586 def update!(**args) @algorithm = args[:algorithm] if args.key?(:algorithm) @cloud_kms_key_version = args[:cloud_kms_key_version] if args.key?(:cloud_kms_key_version) end |