Class: Google::Apis::ComputeBeta::InitialStateConfig

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



20994
20995
20996
# File 'lib/google/apis/compute_beta/classes.rb', line 20994

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

Instance Attribute Details

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

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



20977
20978
20979
# File 'lib/google/apis/compute_beta/classes.rb', line 20977

def dbs
  @dbs
end

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

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



20982
20983
20984
# File 'lib/google/apis/compute_beta/classes.rb', line 20982

def dbxs
  @dbxs
end

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

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



20987
20988
20989
# File 'lib/google/apis/compute_beta/classes.rb', line 20987

def keks
  @keks
end

#pkGoogle::Apis::ComputeBeta::FileContentBuffer

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



20992
20993
20994
# File 'lib/google/apis/compute_beta/classes.rb', line 20992

def pk
  @pk
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



20999
21000
21001
21002
21003
21004
# File 'lib/google/apis/compute_beta/classes.rb', line 20999

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