class Google::Apis::SqladminV1beta4::DiskEncryptionStatus

Disk encryption status for an instance.

Attributes

kind[RW]

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

kms_key_version_name[RW]

KMS key version used to encrypt the Cloud SQL instance resource Corresponds to the JSON property `kmsKeyVersionName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 1142
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_v1beta4/classes.rb, line 1147
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @kms_key_version_name = args[:kms_key_version_name] if args.key?(:kms_key_version_name)
end