Class: Google::Apis::ComputeV1::ShieldedInstanceIdentityEntry
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::ShieldedInstanceIdentityEntry
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Overview
A Shielded Instance Identity Entry.
Instance Attribute Summary collapse
-
#ek_cert ⇒ String
A PEM-encoded X.509 certificate.
-
#ek_pub ⇒ String
A PEM-encoded public key.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ShieldedInstanceIdentityEntry
constructor
A new instance of ShieldedInstanceIdentityEntry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ShieldedInstanceIdentityEntry
Returns a new instance of ShieldedInstanceIdentityEntry.
27491 27492 27493 |
# File 'generated/google/apis/compute_v1/classes.rb', line 27491 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ek_cert ⇒ String
A PEM-encoded X.509 certificate. This field can be empty.
Corresponds to the JSON property ekCert
27484 27485 27486 |
# File 'generated/google/apis/compute_v1/classes.rb', line 27484 def ek_cert @ek_cert end |
#ek_pub ⇒ String
A PEM-encoded public key.
Corresponds to the JSON property ekPub
27489 27490 27491 |
# File 'generated/google/apis/compute_v1/classes.rb', line 27489 def ek_pub @ek_pub end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27496 27497 27498 27499 |
# File 'generated/google/apis/compute_v1/classes.rb', line 27496 def update!(**args) @ek_cert = args[:ek_cert] if args.key?(:ek_cert) @ek_pub = args[:ek_pub] if args.key?(:ek_pub) end |