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.



16899
16900
16901
# File 'lib/google/apis/compute_alpha/classes.rb', line 16899

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

Instance Attribute Details

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

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



16882
16883
16884
# File 'lib/google/apis/compute_alpha/classes.rb', line 16882

def dbs
  @dbs
end

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

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



16887
16888
16889
# File 'lib/google/apis/compute_alpha/classes.rb', line 16887

def dbxs
  @dbxs
end

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

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



16892
16893
16894
# File 'lib/google/apis/compute_alpha/classes.rb', line 16892

def keks
  @keks
end

#pkGoogle::Apis::ComputeAlpha::FileContentBuffer

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



16897
16898
16899
# File 'lib/google/apis/compute_alpha/classes.rb', line 16897

def pk
  @pk
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16904
16905
16906
16907
16908
16909
# File 'lib/google/apis/compute_alpha/classes.rb', line 16904

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