Class: Google::Apis::ComputeBeta::ShieldedVmConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::ShieldedVmConfig
- 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 VM 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) ⇒ ShieldedVmConfig
constructor
A new instance of ShieldedVmConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ShieldedVmConfig
Returns a new instance of ShieldedVmConfig.
40793 40794 40795 |
# File 'lib/google/apis/compute_beta/classes.rb', line 40793 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
40778 40779 40780 |
# File 'lib/google/apis/compute_beta/classes.rb', line 40778 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
40784 40785 40786 |
# File 'lib/google/apis/compute_beta/classes.rb', line 40784 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
40790 40791 40792 |
# File 'lib/google/apis/compute_beta/classes.rb', line 40790 def enable_vtpm @enable_vtpm end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
40798 40799 40800 40801 40802 |
# File 'lib/google/apis/compute_beta/classes.rb', line 40798 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 |