Class: Google::Apis::ComputeV1::CustomerEncryptionKey

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CustomerEncryptionKey

Returns a new instance of CustomerEncryptionKey



1600
1601
1602
# File 'generated/google/apis/compute_v1/classes.rb', line 1600

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#raw_keyString

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

Returns:

  • (String)


1592
1593
1594
# File 'generated/google/apis/compute_v1/classes.rb', line 1592

def raw_key
  @raw_key
end

#sha256String

[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

Returns:

  • (String)


1598
1599
1600
# File 'generated/google/apis/compute_v1/classes.rb', line 1598

def sha256
  @sha256
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1605
1606
1607
1608
# File 'generated/google/apis/compute_v1/classes.rb', line 1605

def update!(**args)
  @raw_key = args[:raw_key] if args.key?(:raw_key)
  @sha256 = args[:sha256] if args.key?(:sha256)
end