Class: Google::Apis::ContainerV1::DatabaseEncryption
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::DatabaseEncryption
- 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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ DatabaseEncryption
Returns a new instance of DatabaseEncryption
1111 1112 1113 |
# File 'generated/google/apis/container_v1/classes.rb', line 1111 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
1104 1105 1106 |
# File 'generated/google/apis/container_v1/classes.rb', line 1104 def key_name @key_name end |
#state ⇒ String
Denotes the state of etcd encryption.
Corresponds to the JSON property state
1109 1110 1111 |
# File 'generated/google/apis/container_v1/classes.rb', line 1109 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1116 1117 1118 1119 |
# File 'generated/google/apis/container_v1/classes.rb', line 1116 def update!(**args) @key_name = args[:key_name] if args.key?(:key_name) @state = args[:state] if args.key?(:state) end |