Class: Google::Apis::ComputeV1::CustomerEncryptionKey
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::CustomerEncryptionKey
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Overview
Represents a customer-supplied encryption key
Instance Attribute Summary collapse
-
#kms_key_name ⇒ String
The name of the encryption key that is stored in Google Cloud KMS.
-
#raw_key ⇒ String
Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
-
#sha256 ⇒ String
[Output only] The RFC 4648 base64 encoded SHA-256 hash of the customer- supplied encryption key that protects this resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomerEncryptionKey
constructor
A new instance of CustomerEncryptionKey.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ CustomerEncryptionKey
Returns a new instance of CustomerEncryptionKey
3542 3543 3544 |
# File 'generated/google/apis/compute_v1/classes.rb', line 3542 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kms_key_name ⇒ String
The name of the encryption key that is stored in Google Cloud KMS.
Corresponds to the JSON property kmsKeyName
3528 3529 3530 |
# File 'generated/google/apis/compute_v1/classes.rb', line 3528 def kms_key_name @kms_key_name end |
#raw_key ⇒ String
Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648
base64 to either encrypt or decrypt this resource.
Corresponds to the JSON property rawKey
3534 3535 3536 |
# File 'generated/google/apis/compute_v1/classes.rb', line 3534 def raw_key @raw_key end |
#sha256 ⇒ String
[Output only] The RFC 4648 base64 encoded SHA-256 hash of the customer-
supplied encryption key that protects this resource.
Corresponds to the JSON property sha256
3540 3541 3542 |
# File 'generated/google/apis/compute_v1/classes.rb', line 3540 def sha256 @sha256 end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3547 3548 3549 3550 3551 |
# File 'generated/google/apis/compute_v1/classes.rb', line 3547 def update!(**args) @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name) @raw_key = args[:raw_key] if args.key?(:raw_key) @sha256 = args[:sha256] if args.key?(:sha256) end |