Class: Google::Apis::ContainerV1beta1::DatabaseEncryption

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/container_v1beta1/classes.rb,
lib/google/apis/container_v1beta1/representations.rb,
lib/google/apis/container_v1beta1/representations.rb

Overview

Configuration of etcd encryption.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DatabaseEncryption

Returns a new instance of DatabaseEncryption.



1503
1504
1505
# File 'lib/google/apis/container_v1beta1/classes.rb', line 1503

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)


1496
1497
1498
# File 'lib/google/apis/container_v1beta1/classes.rb', line 1496

def key_name
  @key_name
end

#stateString

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

Returns:

  • (String)


1501
1502
1503
# File 'lib/google/apis/container_v1beta1/classes.rb', line 1501

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1508
1509
1510
1511
# File 'lib/google/apis/container_v1beta1/classes.rb', line 1508

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