Class: Google::Apis::NotebooksV1::EncryptionConfig
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::EncryptionConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/notebooks_v1/classes.rb,
lib/google/apis/notebooks_v1/representations.rb,
lib/google/apis/notebooks_v1/representations.rb more...
Overview
Represents a custom encryption key configuration that can be applied to a resource. This will encrypt all disks in Virtual Machine.
Instance Attribute Summary collapse
-
#kms_key ⇒ String
The Cloud KMS resource identifier of the customer-managed encryption key used to protect a resource, such as a disks.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EncryptionConfig
constructor
A new instance of EncryptionConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EncryptionConfig
Returns a new instance of EncryptionConfig.
470 471 472 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 470 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kms_key ⇒ String
The Cloud KMS resource identifier of the customer-managed encryption key used
to protect a resource, such as a disks. It has the following format: projects/
PROJECT_ID/locations/
REGION/keyRings/
KEY_RING_NAME/cryptoKeys/
KEY_NAME`
Corresponds to the JSON property
kmsKey`
468 469 470 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 468 def kms_key @kms_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
475 476 477 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 475 def update!(**args) @kms_key = args[:kms_key] if args.key?(:kms_key) end |