Class: Google::Apis::ContainerV1::DatabaseEncryption
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::DatabaseEncryption
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/google/apis/container_v1/representations.rb
Overview
Configuration of etcd encryption.
Instance Attribute Summary collapse
-
#key_name ⇒ String
Name of CloudKMS key to use for the encryption of secrets in etcd.
-
#state ⇒ String
Denotes the state of etcd encryption.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DatabaseEncryption
constructor
A new instance of DatabaseEncryption.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DatabaseEncryption
Returns a new instance of DatabaseEncryption.
1288 1289 1290 |
# File 'generated/google/apis/container_v1/classes.rb', line 1288 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key_name ⇒ String
Name of CloudKMS key to use for the encryption of secrets in etcd. Ex.
projects/my-project/locations/global/keyRings/my-ring/cryptoKeys/my-key
Corresponds to the JSON property keyName
1281 1282 1283 |
# File 'generated/google/apis/container_v1/classes.rb', line 1281 def key_name @key_name end |
#state ⇒ String
Denotes the state of etcd encryption.
Corresponds to the JSON property state
1286 1287 1288 |
# File 'generated/google/apis/container_v1/classes.rb', line 1286 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1293 1294 1295 1296 |
# File 'generated/google/apis/container_v1/classes.rb', line 1293 def update!(**args) @key_name = args[:key_name] if args.key?(:key_name) @state = args[:state] if args.key?(:state) end |