class Google::Apis::SqladminV1::DiskEncryptionConfiguration

Disk encryption configuration for an instance.

Attributes

kind[RW]

This is always **sql#diskEncryptionConfiguration**. Corresponds to the JSON property `kind` @return [String]

kms_key_name[RW]

Resource name of KMS key for disk encryption Corresponds to the JSON property `kmsKeyName` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/sqladmin_v1/classes.rb, line 1083
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
end