Class: Google::Apis::DataprocV1beta2::ShieldedInstanceConfig
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1beta2::ShieldedInstanceConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataproc_v1beta2/classes.rb,
lib/google/apis/dataproc_v1beta2/representations.rb,
lib/google/apis/dataproc_v1beta2/representations.rb
Overview
Shielded Instance Config for clusters using Compute Engine Shielded VMs (https: //cloud.google.com/security/shielded-cloud/shielded-vm).
Instance Attribute Summary collapse
-
#enable_integrity_monitoring ⇒ Boolean
(also: #enable_integrity_monitoring?)
Optional.
-
#enable_secure_boot ⇒ Boolean
(also: #enable_secure_boot?)
Optional.
-
#enable_vtpm ⇒ Boolean
(also: #enable_vtpm?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ShieldedInstanceConfig
constructor
A new instance of ShieldedInstanceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ShieldedInstanceConfig
Returns a new instance of ShieldedInstanceConfig.
2964 2965 2966 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 2964 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enable_integrity_monitoring ⇒ Boolean Also known as: enable_integrity_monitoring?
Optional. Defines whether instances have integrity monitoring enabled.
Corresponds to the JSON property enableIntegrityMonitoring
2949 2950 2951 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 2949 def enable_integrity_monitoring @enable_integrity_monitoring end |
#enable_secure_boot ⇒ Boolean Also known as: enable_secure_boot?
Optional. Defines whether instances have Secure Boot enabled.
Corresponds to the JSON property enableSecureBoot
2955 2956 2957 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 2955 def enable_secure_boot @enable_secure_boot end |
#enable_vtpm ⇒ Boolean Also known as: enable_vtpm?
Optional. Defines whether instances have the vTPM enabled.
Corresponds to the JSON property enableVtpm
2961 2962 2963 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 2961 def enable_vtpm @enable_vtpm end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2969 2970 2971 2972 2973 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 2969 def update!(**args) @enable_integrity_monitoring = args[:enable_integrity_monitoring] if args.key?(:enable_integrity_monitoring) @enable_secure_boot = args[:enable_secure_boot] if args.key?(:enable_secure_boot) @enable_vtpm = args[:enable_vtpm] if args.key?(:enable_vtpm) end |