Class: Google::Apis::DataprocV1beta2::EncryptionConfig
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1beta2::EncryptionConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataproc_v1beta2/classes.rb,
generated/google/apis/dataproc_v1beta2/representations.rb,
generated/google/apis/dataproc_v1beta2/representations.rb
Overview
Encryption settings for the cluster.
Instance Attribute Summary collapse
-
#gce_pd_kms_key_name ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EncryptionConfig
constructor
A new instance of EncryptionConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ EncryptionConfig
Returns a new instance of EncryptionConfig
627 628 629 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 627 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gce_pd_kms_key_name ⇒ String
Optional. The Cloud KMS key name to use for PD disk encryption for all
instances in the cluster.
Corresponds to the JSON property gcePdKmsKeyName
625 626 627 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 625 def gce_pd_kms_key_name @gce_pd_kms_key_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
632 633 634 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 632 def update!(**args) @gce_pd_kms_key_name = args[:gce_pd_kms_key_name] if args.key?(:gce_pd_kms_key_name) end |