Class: Google::Apis::ComputeV1::InitialStateConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::InitialStateConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/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.
10707 10708 10709 |
# File 'generated/google/apis/compute_v1/classes.rb', line 10707 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
10690 10691 10692 |
# File 'generated/google/apis/compute_v1/classes.rb', line 10690 def dbs @dbs end |
#dbxs ⇒ Array<Google::Apis::ComputeV1::FileContentBuffer>
The forbidden key database (dbx).
Corresponds to the JSON property dbxs
10695 10696 10697 |
# File 'generated/google/apis/compute_v1/classes.rb', line 10695 def dbxs @dbxs end |
#keks ⇒ Array<Google::Apis::ComputeV1::FileContentBuffer>
The Key Exchange Key (KEK).
Corresponds to the JSON property keks
10700 10701 10702 |
# File 'generated/google/apis/compute_v1/classes.rb', line 10700 def keks @keks end |
#pk ⇒ Google::Apis::ComputeV1::FileContentBuffer
The Platform Key (PK).
Corresponds to the JSON property pk
10705 10706 10707 |
# File 'generated/google/apis/compute_v1/classes.rb', line 10705 def pk @pk end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10712 10713 10714 10715 10716 10717 |
# File 'generated/google/apis/compute_v1/classes.rb', line 10712 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 |