Class: Google::Apis::CloudkmsV1::KeyOperationAttestation
- Inherits:
-
Object
- Object
- Google::Apis::CloudkmsV1::KeyOperationAttestation
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudkms_v1/classes.rb,
lib/google/apis/cloudkms_v1/representations.rb,
lib/google/apis/cloudkms_v1/representations.rb
Overview
Contains an HSM-generated attestation about a key operation. For more information, see Verifying attestations.
Instance Attribute Summary collapse
-
#cert_chains ⇒ Google::Apis::CloudkmsV1::CertificateChains
Certificate chains needed to verify the attestation.
-
#content ⇒ String
Output only.
-
#format ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ KeyOperationAttestation
constructor
A new instance of KeyOperationAttestation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ KeyOperationAttestation
Returns a new instance of KeyOperationAttestation.
1283 1284 1285 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 1283 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cert_chains ⇒ Google::Apis::CloudkmsV1::CertificateChains
Certificate chains needed to verify the attestation. Certificates in chains
are PEM-encoded and are ordered based on https://tools.ietf.org/html/rfc5246#
section-7.4.2.
Corresponds to the JSON property certChains
1269 1270 1271 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 1269 def cert_chains @cert_chains end |
#content ⇒ String
Output only. The attestation data provided by the HSM when the key operation
was performed.
Corresponds to the JSON property content
NOTE: Values are automatically base64 encoded/decoded in the client library.
1276 1277 1278 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 1276 def content @content end |
#format ⇒ String
Output only. The format of the attestation data.
Corresponds to the JSON property format
1281 1282 1283 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 1281 def format @format end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1288 1289 1290 1291 1292 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 1288 def update!(**args) @cert_chains = args[:cert_chains] if args.key?(:cert_chains) @content = args[:content] if args.key?(:content) @format = args[:format] if args.key?(:format) end |