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.
51159 51160 51161 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 51159 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
51136 51137 51138 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 51136 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
51141 51142 51143 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 51141 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
51146 51147 51148 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 51146 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
51152 51153 51154 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 51152 def kind @kind end |
#signing_key ⇒ Google::Apis::ComputeAlpha::ShieldedInstanceIdentityEntry
A Shielded Instance Identity Entry.
Corresponds to the JSON property signingKey
51157 51158 51159 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 51157 def signing_key @signing_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
51164 51165 51166 51167 51168 51169 51170 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 51164 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 |