Class: Google::Apis::ComputeAlpha::InitialStateConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InitialStateConfig
- 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
-
#dbs ⇒ Array<Google::Apis::ComputeAlpha::FileContentBuffer>
The Key Database (db).
-
#dbxs ⇒ Array<Google::Apis::ComputeAlpha::FileContentBuffer>
The forbidden key database (dbx).
-
#keks ⇒ Array<Google::Apis::ComputeAlpha::FileContentBuffer>
The Key Exchange Key (KEK).
-
#pk ⇒ Google::Apis::ComputeAlpha::FileContentBuffer
The Platform Key (PK).
Instance Method Summary collapse
-
#initialize(**args) ⇒ InitialStateConfig
constructor
A new instance of InitialStateConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InitialStateConfig
Returns a new instance of InitialStateConfig.
14963 14964 14965 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 14963 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dbs ⇒ Array<Google::Apis::ComputeAlpha::FileContentBuffer>
The Key Database (db).
Corresponds to the JSON property dbs
14946 14947 14948 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 14946 def dbs @dbs end |
#dbxs ⇒ Array<Google::Apis::ComputeAlpha::FileContentBuffer>
The forbidden key database (dbx).
Corresponds to the JSON property dbxs
14951 14952 14953 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 14951 def dbxs @dbxs end |
#keks ⇒ Array<Google::Apis::ComputeAlpha::FileContentBuffer>
The Key Exchange Key (KEK).
Corresponds to the JSON property keks
14956 14957 14958 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 14956 def keks @keks end |
#pk ⇒ Google::Apis::ComputeAlpha::FileContentBuffer
The Platform Key (PK).
Corresponds to the JSON property pk
14961 14962 14963 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 14961 def pk @pk end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14968 14969 14970 14971 14972 14973 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 14968 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 |