Class: Google::Cloud::Container::V1beta1::DatabaseEncryption
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1beta1::DatabaseEncryption
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1beta1/cluster_service.rb
Overview
Configuration of etcd encryption.
Defined Under Namespace
Modules: State
Instance Attribute Summary collapse
-
#key_name ⇒ ::String
Name of CloudKMS key to use for the encryption of secrets in etcd.
-
#state ⇒ ::Google::Cloud::Container::V1beta1::DatabaseEncryption::State
Denotes the state of etcd encryption.
Instance Attribute Details
#key_name ⇒ ::String
Returns 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.
4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 4624 class DatabaseEncryption include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # State of etcd encryption. module State # Should never be set UNKNOWN = 0 # Secrets in etcd are encrypted. ENCRYPTED = 1 # Secrets in etcd are stored in plain text (at etcd level) - this is # unrelated to Compute Engine level full disk encryption. DECRYPTED = 2 end end |
#state ⇒ ::Google::Cloud::Container::V1beta1::DatabaseEncryption::State
Returns Denotes the state of etcd encryption.
4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 4624 class DatabaseEncryption include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # State of etcd encryption. module State # Should never be set UNKNOWN = 0 # Secrets in etcd are encrypted. ENCRYPTED = 1 # Secrets in etcd are stored in plain text (at etcd level) - this is # unrelated to Compute Engine level full disk encryption. DECRYPTED = 2 end end |