Class: Google::Apis::ContainerV1::DatabaseEncryption

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DatabaseEncryption

Returns a new instance of DatabaseEncryption



1112
1113
1114
# File 'generated/google/apis/container_v1/classes.rb', line 1112

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#key_nameString

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

Returns:

  • (String)


1105
1106
1107
# File 'generated/google/apis/container_v1/classes.rb', line 1105

def key_name
  @key_name
end

#stateString

Denotes the state of etcd encryption. Corresponds to the JSON property state

Returns:

  • (String)


1110
1111
1112
# File 'generated/google/apis/container_v1/classes.rb', line 1110

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1117
1118
1119
1120
# File 'generated/google/apis/container_v1/classes.rb', line 1117

def update!(**args)
  @key_name = args[:key_name] if args.key?(:key_name)
  @state = args[:state] if args.key?(:state)
end