class Google::Apis::MetastoreV1beta::EncryptionConfig

Encryption settings for the service.

Attributes

kms_key[RW]

The fully qualified customer provided Cloud KMS key name to use for customer data encryption, in the following form:projects/`project_number`/locations/` location_id`/keyRings/`key_ring_id`/cryptoKeys/`crypto_key_id`. Corresponds to the JSON property `kmsKey` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/metastore_v1beta/classes.rb, line 334
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/metastore_v1beta/classes.rb, line 339
def update!(**args)
  @kms_key = args[:kms_key] if args.key?(:kms_key)
end