Class: Google::Apis::ComputeAlpha::InitialStateConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InitialStateConfig
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/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::ComputeAlpha::FileContentBuffer>
The Key Database (db).
-
#dbxs ⇒ Array<Google::Apis::ComputeAlpha::FileContentBuffer>
The forbidden key database (dbx).
-
#keks ⇒ Array<Google::Apis::ComputeAlpha::FileContentBuffer>
The Key Exchange Key (KEK).
-
#pk ⇒ Google::Apis::ComputeAlpha::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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ InitialStateConfig
Returns a new instance of InitialStateConfig.
11241 11242 11243 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 11241 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dbs ⇒ Array<Google::Apis::ComputeAlpha::FileContentBuffer>
The Key Database (db).
Corresponds to the JSON property dbs
11224 11225 11226 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 11224 def dbs @dbs end |
#dbxs ⇒ Array<Google::Apis::ComputeAlpha::FileContentBuffer>
The forbidden key database (dbx).
Corresponds to the JSON property dbxs
11229 11230 11231 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 11229 def dbxs @dbxs end |
#keks ⇒ Array<Google::Apis::ComputeAlpha::FileContentBuffer>
The Key Exchange Key (KEK).
Corresponds to the JSON property keks
11234 11235 11236 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 11234 def keks @keks end |
#pk ⇒ Google::Apis::ComputeAlpha::FileContentBuffer
The Platform Key (PK).
Corresponds to the JSON property pk
11239 11240 11241 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 11239 def pk @pk end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11246 11247 11248 11249 11250 11251 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 11246 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 |