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.



13611
13612
13613
# File 'lib/google/apis/compute_beta/classes.rb', line 13611

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

Instance Attribute Details

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

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



13594
13595
13596
# File 'lib/google/apis/compute_beta/classes.rb', line 13594

def dbs
  @dbs
end

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

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



13599
13600
13601
# File 'lib/google/apis/compute_beta/classes.rb', line 13599

def dbxs
  @dbxs
end

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

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



13604
13605
13606
# File 'lib/google/apis/compute_beta/classes.rb', line 13604

def keks
  @keks
end

#pkGoogle::Apis::ComputeBeta::FileContentBuffer

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



13609
13610
13611
# File 'lib/google/apis/compute_beta/classes.rb', line 13609

def pk
  @pk
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13616
13617
13618
13619
13620
13621
# File 'lib/google/apis/compute_beta/classes.rb', line 13616

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