Class: Google::Apis::ComputeBeta::InitialStateConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InitialStateConfig
- 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
Initial State for shielded instance, these are public keys which are safe to store in public
Instance Attribute Summary collapse
-
#dbs ⇒ Array<Google::Apis::ComputeBeta::FileContentBuffer>
The Key Database (db).
-
#dbxs ⇒ Array<Google::Apis::ComputeBeta::FileContentBuffer>
The forbidden key database (dbx).
-
#keks ⇒ Array<Google::Apis::ComputeBeta::FileContentBuffer>
The Key Exchange Key (KEK).
-
#pk ⇒ Google::Apis::ComputeBeta::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.
12498 12499 12500 |
# File 'lib/google/apis/compute_beta/classes.rb', line 12498 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dbs ⇒ Array<Google::Apis::ComputeBeta::FileContentBuffer>
The Key Database (db).
Corresponds to the JSON property dbs
12481 12482 12483 |
# File 'lib/google/apis/compute_beta/classes.rb', line 12481 def dbs @dbs end |
#dbxs ⇒ Array<Google::Apis::ComputeBeta::FileContentBuffer>
The forbidden key database (dbx).
Corresponds to the JSON property dbxs
12486 12487 12488 |
# File 'lib/google/apis/compute_beta/classes.rb', line 12486 def dbxs @dbxs end |
#keks ⇒ Array<Google::Apis::ComputeBeta::FileContentBuffer>
The Key Exchange Key (KEK).
Corresponds to the JSON property keks
12491 12492 12493 |
# File 'lib/google/apis/compute_beta/classes.rb', line 12491 def keks @keks end |
#pk ⇒ Google::Apis::ComputeBeta::FileContentBuffer
The Platform Key (PK).
Corresponds to the JSON property pk
12496 12497 12498 |
# File 'lib/google/apis/compute_beta/classes.rb', line 12496 def pk @pk end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12503 12504 12505 12506 12507 12508 |
# File 'lib/google/apis/compute_beta/classes.rb', line 12503 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 |