Class: Google::Apis::ContainerV1beta1::DatabaseEncryption
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::DatabaseEncryption
- 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.
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
1061 1062 1063 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1061 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
1054 1055 1056 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1054 def key_name @key_name end |
#state ⇒ String
Denotes the state of etcd encryption.
Corresponds to the JSON property state
1059 1060 1061 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1059 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1066 1067 1068 1069 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1066 def update!(**args) @key_name = args[:key_name] if args.key?(:key_name) @state = args[:state] if args.key?(:state) end |