Class: Google::Apis::LookerV1::ExportEncryptionConfig
- Inherits:
-
Object
- Object
- Google::Apis::LookerV1::ExportEncryptionConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/looker_v1/classes.rb,
lib/google/apis/looker_v1/representations.rb,
lib/google/apis/looker_v1/representations.rb
Overview
Configuration for Encryption - e.g. CMEK.
Instance Attribute Summary collapse
-
#kms_key_name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExportEncryptionConfig
constructor
A new instance of ExportEncryptionConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExportEncryptionConfig
Returns a new instance of ExportEncryptionConfig.
401 402 403 |
# File 'lib/google/apis/looker_v1/classes.rb', line 401 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kms_key_name ⇒ String
Required. Name of the CMEK key in KMS.
Corresponds to the JSON property kmsKeyName
399 400 401 |
# File 'lib/google/apis/looker_v1/classes.rb', line 399 def kms_key_name @kms_key_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
406 407 408 |
# File 'lib/google/apis/looker_v1/classes.rb', line 406 def update!(**args) @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name) end |