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.
263 264 265 |
# File 'lib/google/apis/looker_v1/classes.rb', line 263 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
261 262 263 |
# File 'lib/google/apis/looker_v1/classes.rb', line 261 def kms_key_name @kms_key_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
268 269 270 |
# File 'lib/google/apis/looker_v1/classes.rb', line 268 def update!(**args) @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name) end |