Class: Google::Apis::ComputeBeta::ShieldedInstanceConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::ShieldedInstanceConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/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.Enabled by default.
-
#enable_secure_boot ⇒ Boolean
(also: #enable_secure_boot?)
Defines whether the instance has Secure Boot enabled.Disabled by default.
-
#enable_vtpm ⇒ Boolean
(also: #enable_vtpm?)
Defines whether the instance has the vTPM enabled.Enabled by default.
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.
63327 63328 63329 |
# File 'lib/google/apis/compute_beta/classes.rb', line 63327 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.Enabled by
default.
Corresponds to the JSON property enableIntegrityMonitoring
63310 63311 63312 |
# File 'lib/google/apis/compute_beta/classes.rb', line 63310 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.Disabled by
default.
Corresponds to the JSON property enableSecureBoot
63317 63318 63319 |
# File 'lib/google/apis/compute_beta/classes.rb', line 63317 def enable_secure_boot @enable_secure_boot end |
#enable_vtpm ⇒ Boolean Also known as: enable_vtpm?
Defines whether the instance has the vTPM enabled.Enabled by
default.
Corresponds to the JSON property enableVtpm
63324 63325 63326 |
# File 'lib/google/apis/compute_beta/classes.rb', line 63324 def enable_vtpm @enable_vtpm end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
63332 63333 63334 63335 63336 |
# File 'lib/google/apis/compute_beta/classes.rb', line 63332 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 |