Class: Google::Apis::SqladminV1::DiskEncryptionStatus
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1::DiskEncryptionStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sqladmin_v1/classes.rb,
lib/google/apis/sqladmin_v1/representations.rb,
lib/google/apis/sqladmin_v1/representations.rb
Overview
Disk encryption status for an instance.
Instance Attribute Summary collapse
-
#kind ⇒ String
This is always
sql#diskEncryptionStatus. -
#kms_key_version_name ⇒ String
KMS key version used to encrypt the Cloud SQL instance resource Corresponds to the JSON property
kmsKeyVersionName.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DiskEncryptionStatus
constructor
A new instance of DiskEncryptionStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DiskEncryptionStatus
Returns a new instance of DiskEncryptionStatus.
1810 1811 1812 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1810 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
This is always sql#diskEncryptionStatus.
Corresponds to the JSON property kind
1803 1804 1805 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1803 def kind @kind end |
#kms_key_version_name ⇒ String
KMS key version used to encrypt the Cloud SQL instance resource
Corresponds to the JSON property kmsKeyVersionName
1808 1809 1810 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1808 def kms_key_version_name @kms_key_version_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1815 1816 1817 1818 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1815 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 |