Class: Google::Apis::LookerV1::ExportMetadataEncryptionKey

Inherits:
Object
  • Object
show all
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

Encryption key details for the exported artifact.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExportMetadataEncryptionKey

Returns a new instance of ExportMetadataEncryptionKey.



486
487
488
# File 'lib/google/apis/looker_v1/classes.rb', line 486

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

Instance Attribute Details

#cmekString

Name of the CMEK. Corresponds to the JSON property cmek

Returns:

  • (String)


479
480
481
# File 'lib/google/apis/looker_v1/classes.rb', line 479

def cmek
  @cmek
end

#versionString

Version of the CMEK. Corresponds to the JSON property version

Returns:

  • (String)


484
485
486
# File 'lib/google/apis/looker_v1/classes.rb', line 484

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



491
492
493
494
# File 'lib/google/apis/looker_v1/classes.rb', line 491

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