class Google::Apis::ComputeV1::InitialStateConfig
Initial State for shielded instance, these are public keys which are safe to store in public
Attributes
dbs[RW]
The Key Database (db). Corresponds to the JSON property `dbs` @return [Array<Google::Apis::ComputeV1::FileContentBuffer>]
dbxs[RW]
The forbidden key database (dbx). Corresponds to the JSON property `dbxs` @return [Array<Google::Apis::ComputeV1::FileContentBuffer>]
keks[RW]
The Key Exchange Key (KEK). Corresponds to the JSON property `keks` @return [Array<Google::Apis::ComputeV1::FileContentBuffer>]
pk[RW]
The Platform Key (PK). Corresponds to the JSON property `pk` @return [Google::Apis::ComputeV1::FileContentBuffer]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 11655 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/compute_v1/classes.rb, line 11660 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