Class: Google::Apis::ComputeAlpha::InitialStateConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InitialStateConfig

Returns a new instance of InitialStateConfig.



13584
13585
13586
# File 'lib/google/apis/compute_alpha/classes.rb', line 13584

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dbsArray<Google::Apis::ComputeAlpha::FileContentBuffer>

The Key Database (db). Corresponds to the JSON property dbs



13567
13568
13569
# File 'lib/google/apis/compute_alpha/classes.rb', line 13567

def dbs
  @dbs
end

#dbxsArray<Google::Apis::ComputeAlpha::FileContentBuffer>

The forbidden key database (dbx). Corresponds to the JSON property dbxs



13572
13573
13574
# File 'lib/google/apis/compute_alpha/classes.rb', line 13572

def dbxs
  @dbxs
end

#keksArray<Google::Apis::ComputeAlpha::FileContentBuffer>

The Key Exchange Key (KEK). Corresponds to the JSON property keks



13577
13578
13579
# File 'lib/google/apis/compute_alpha/classes.rb', line 13577

def keks
  @keks
end

#pkGoogle::Apis::ComputeAlpha::FileContentBuffer

The Platform Key (PK). Corresponds to the JSON property pk



13582
13583
13584
# File 'lib/google/apis/compute_alpha/classes.rb', line 13582

def pk
  @pk
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13589
13590
13591
13592
13593
13594
# File 'lib/google/apis/compute_alpha/classes.rb', line 13589

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