class Google::Apis::ComputeBeta::ShieldedInstanceIdentityEntry
A Shielded Instance
Identity Entry.
Attributes
ek_cert[RW]
A PEM-encoded X.509 certificate. This field can be empty. Corresponds to the JSON property `ekCert` @return [String]
ek_pub[RW]
A PEM-encoded public key. Corresponds to the JSON property `ekPub` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/compute_beta/classes.rb, line 32440 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/compute_beta/classes.rb, line 32445 def update!(**args) @ek_cert = args[:ek_cert] if args.key?(:ek_cert) @ek_pub = args[:ek_pub] if args.key?(:ek_pub) end