Class: Google::Apis::ContainerV1beta1::DatabaseEncryption
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::DatabaseEncryption
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/container_v1beta1/classes.rb,
generated/google/apis/container_v1beta1/representations.rb,
generated/google/apis/container_v1beta1/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.
1475 1476 1477 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1475 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
1468 1469 1470 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1468 def key_name @key_name end |
#state ⇒ String
Denotes the state of etcd encryption.
Corresponds to the JSON property state
1473 1474 1475 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1473 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1480 1481 1482 1483 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1480 def update!(**args) @key_name = args[:key_name] if args.key?(:key_name) @state = args[:state] if args.key?(:state) end |