Class: Google::Apis::ComputeAlpha::ShieldedVmConfig
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeAlpha::ShieldedVmConfig
 
- 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 VM options.
Instance Attribute Summary collapse
- 
  
    
      #enable_integrity_monitoring  ⇒ Boolean 
    
    
      (also: #enable_integrity_monitoring?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Defines whether the instance should have integrity monitoring enabled. 
- 
  
    
      #enable_secure_boot  ⇒ Boolean 
    
    
      (also: #enable_secure_boot?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Defines whether the instance should have secure boot enabled. 
- 
  
    
      #enable_vtpm  ⇒ Boolean 
    
    
      (also: #enable_vtpm?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Defines whether the instance should have the TPM enabled. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ShieldedVmConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ShieldedVmConfig. 
- 
  
    
      #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) ⇒ ShieldedVmConfig
Returns a new instance of ShieldedVmConfig
| 22325 22326 22327 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22325 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#enable_integrity_monitoring ⇒ Boolean Also known as: enable_integrity_monitoring?
Defines whether the instance should have integrity monitoring enabled.
Corresponds to the JSON property enableIntegrityMonitoring
| 22310 22311 22312 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22310 def enable_integrity_monitoring @enable_integrity_monitoring end | 
#enable_secure_boot ⇒ Boolean Also known as: enable_secure_boot?
Defines whether the instance should have secure boot enabled.
Corresponds to the JSON property enableSecureBoot
| 22316 22317 22318 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22316 def enable_secure_boot @enable_secure_boot end | 
#enable_vtpm ⇒ Boolean Also known as: enable_vtpm?
Defines whether the instance should have the TPM enabled.
Corresponds to the JSON property enableVtpm
| 22322 22323 22324 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22322 def enable_vtpm @enable_vtpm end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 22330 22331 22332 22333 22334 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22330 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 |