Class: Google::Apis::ComputeAlpha::ShieldedInstanceConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::ShieldedInstanceConfig
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Overview
A set of Shielded Instance options.
Instance Attribute Summary collapse
-
#enable_integrity_monitoring ⇒ Boolean
(also: #enable_integrity_monitoring?)
Defines whether the instance has integrity monitoring enabled.
-
#enable_secure_boot ⇒ Boolean
(also: #enable_secure_boot?)
Defines whether the instance has Secure Boot enabled.
-
#enable_vtpm ⇒ Boolean
(also: #enable_vtpm?)
Defines whether the instance has the vTPM enabled.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ShieldedInstanceConfig
constructor
A new instance of ShieldedInstanceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ShieldedInstanceConfig
Returns a new instance of ShieldedInstanceConfig
30554 30555 30556 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 30554 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enable_integrity_monitoring ⇒ Boolean Also known as: enable_integrity_monitoring?
Defines whether the instance has integrity monitoring enabled.
Corresponds to the JSON property enableIntegrityMonitoring
30539 30540 30541 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 30539 def enable_integrity_monitoring @enable_integrity_monitoring end |
#enable_secure_boot ⇒ Boolean Also known as: enable_secure_boot?
Defines whether the instance has Secure Boot enabled.
Corresponds to the JSON property enableSecureBoot
30545 30546 30547 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 30545 def enable_secure_boot @enable_secure_boot end |
#enable_vtpm ⇒ Boolean Also known as: enable_vtpm?
Defines whether the instance has the vTPM enabled.
Corresponds to the JSON property enableVtpm
30551 30552 30553 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 30551 def enable_vtpm @enable_vtpm end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
30559 30560 30561 30562 30563 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 30559 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 |