Class: Google::Apis::ComputeAlpha::ShieldedInstanceIdentity
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::ShieldedInstanceIdentity
- 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
A Shielded Instance Identity.
Instance Attribute Summary collapse
-
#ecc_p256_encryption_key ⇒ Google::Apis::ComputeAlpha::ShieldedInstanceIdentityEntry
A Shielded Instance Identity Entry.
-
#ecc_p256_signing_key ⇒ Google::Apis::ComputeAlpha::ShieldedInstanceIdentityEntry
A Shielded Instance Identity Entry.
-
#encryption_key ⇒ Google::Apis::ComputeAlpha::ShieldedInstanceIdentityEntry
A Shielded Instance Identity Entry.
-
#kind ⇒ String
[Output Only] Type of the resource.
-
#signing_key ⇒ Google::Apis::ComputeAlpha::ShieldedInstanceIdentityEntry
A Shielded Instance Identity Entry.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ShieldedInstanceIdentity
constructor
A new instance of ShieldedInstanceIdentity.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ShieldedInstanceIdentity
Returns a new instance of ShieldedInstanceIdentity.
42426 42427 42428 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 42426 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ecc_p256_encryption_key ⇒ Google::Apis::ComputeAlpha::ShieldedInstanceIdentityEntry
A Shielded Instance Identity Entry.
Corresponds to the JSON property eccP256EncryptionKey
42403 42404 42405 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 42403 def ecc_p256_encryption_key @ecc_p256_encryption_key end |
#ecc_p256_signing_key ⇒ Google::Apis::ComputeAlpha::ShieldedInstanceIdentityEntry
A Shielded Instance Identity Entry.
Corresponds to the JSON property eccP256SigningKey
42408 42409 42410 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 42408 def ecc_p256_signing_key @ecc_p256_signing_key end |
#encryption_key ⇒ Google::Apis::ComputeAlpha::ShieldedInstanceIdentityEntry
A Shielded Instance Identity Entry.
Corresponds to the JSON property encryptionKey
42413 42414 42415 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 42413 def encryption_key @encryption_key end |
#kind ⇒ String
[Output Only] Type of the resource. Always compute#shieldedInstanceIdentity
for shielded Instance identity entry.
Corresponds to the JSON property kind
42419 42420 42421 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 42419 def kind @kind end |
#signing_key ⇒ Google::Apis::ComputeAlpha::ShieldedInstanceIdentityEntry
A Shielded Instance Identity Entry.
Corresponds to the JSON property signingKey
42424 42425 42426 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 42424 def signing_key @signing_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
42431 42432 42433 42434 42435 42436 42437 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 42431 def update!(**args) @ecc_p256_encryption_key = args[:ecc_p256_encryption_key] if args.key?(:ecc_p256_encryption_key) @ecc_p256_signing_key = args[:ecc_p256_signing_key] if args.key?(:ecc_p256_signing_key) @encryption_key = args[:encryption_key] if args.key?(:encryption_key) @kind = args[:kind] if args.key?(:kind) @signing_key = args[:signing_key] if args.key?(:signing_key) end |