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



3176
3177
3178
# File 'generated/google/apis/compute_v1/classes.rb', line 3176

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)


3168
3169
3170
# File 'generated/google/apis/compute_v1/classes.rb', line 3168

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)


3174
3175
3176
# File 'generated/google/apis/compute_v1/classes.rb', line 3174

def sha256
  @sha256
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3181
3182
3183
3184
# File 'generated/google/apis/compute_v1/classes.rb', line 3181

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