Class: Google::Apis::ComputeV1::InitialStateConfig
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::InitialStateConfig
 
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
 lib/google/apis/compute_v1/representations.rb,
 lib/google/apis/compute_v1/representations.rb
Overview
Initial State for shielded instance, these are public keys which are safe to store in public
Instance Attribute Summary collapse
- 
  
    
      #dbs  ⇒ Array<Google::Apis::ComputeV1::FileContentBuffer> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Key Database (db). 
- 
  
    
      #dbxs  ⇒ Array<Google::Apis::ComputeV1::FileContentBuffer> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The forbidden key database (dbx). 
- 
  
    
      #keks  ⇒ Array<Google::Apis::ComputeV1::FileContentBuffer> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Key Exchange Key (KEK). 
- 
  
    
      #pk  ⇒ Google::Apis::ComputeV1::FileContentBuffer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Platform Key (PK). 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InitialStateConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of InitialStateConfig. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ InitialStateConfig
Returns a new instance of InitialStateConfig.
| 14519 14520 14521 | # File 'lib/google/apis/compute_v1/classes.rb', line 14519 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#dbs ⇒ Array<Google::Apis::ComputeV1::FileContentBuffer>
The Key Database (db).
Corresponds to the JSON property dbs
| 14502 14503 14504 | # File 'lib/google/apis/compute_v1/classes.rb', line 14502 def dbs @dbs end | 
#dbxs ⇒ Array<Google::Apis::ComputeV1::FileContentBuffer>
The forbidden key database (dbx).
Corresponds to the JSON property dbxs
| 14507 14508 14509 | # File 'lib/google/apis/compute_v1/classes.rb', line 14507 def dbxs @dbxs end | 
#keks ⇒ Array<Google::Apis::ComputeV1::FileContentBuffer>
The Key Exchange Key (KEK).
Corresponds to the JSON property keks
| 14512 14513 14514 | # File 'lib/google/apis/compute_v1/classes.rb', line 14512 def keks @keks end | 
#pk ⇒ Google::Apis::ComputeV1::FileContentBuffer
The Platform Key (PK).
Corresponds to the JSON property pk
| 14517 14518 14519 | # File 'lib/google/apis/compute_v1/classes.rb', line 14517 def pk @pk end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 14524 14525 14526 14527 14528 14529 | # File 'lib/google/apis/compute_v1/classes.rb', line 14524 def update!(**args) @dbs = args[:dbs] if args.key?(:dbs) @dbxs = args[:dbxs] if args.key?(:dbxs) @keks = args[:keks] if args.key?(:keks) @pk = args[:pk] if args.key?(:pk) end |