Class: Google::Apis::ComputeV1::InitialStateConfig

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



14497
14498
14499
# File 'lib/google/apis/compute_v1/classes.rb', line 14497

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

Instance Attribute Details

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

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



14480
14481
14482
# File 'lib/google/apis/compute_v1/classes.rb', line 14480

def dbs
  @dbs
end

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

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



14485
14486
14487
# File 'lib/google/apis/compute_v1/classes.rb', line 14485

def dbxs
  @dbxs
end

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

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



14490
14491
14492
# File 'lib/google/apis/compute_v1/classes.rb', line 14490

def keks
  @keks
end

#pkGoogle::Apis::ComputeV1::FileContentBuffer

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



14495
14496
14497
# File 'lib/google/apis/compute_v1/classes.rb', line 14495

def pk
  @pk
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14502
14503
14504
14505
14506
14507
# File 'lib/google/apis/compute_v1/classes.rb', line 14502

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