Class: Google::Apis::BinaryauthorizationV1::AttestorPublicKey

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/binaryauthorization_v1/classes.rb,
lib/google/apis/binaryauthorization_v1/representations.rb,
lib/google/apis/binaryauthorization_v1/representations.rb

Overview

An attestor public key that will be used to verify attestations signed by this attestor.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AttestorPublicKey

Returns a new instance of AttestorPublicKey.



292
293
294
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 292

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#ascii_armored_pgp_public_keyString

ASCII-armored representation of a PGP public key, as the entire output by the command gpg --export --armor foo@example.com (either LF or CRLF line endings) . When using this field, id should be left blank. The Binary Authorization API handlers will calculate the ID and fill it in automatically. Binary Authorization computes this ID as the OpenPGP RFC4880 V4 fingerprint, represented as upper-case hex. If id is provided by the caller, it will be overwritten by the API-calculated ID. Corresponds to the JSON property asciiArmoredPgpPublicKey

Returns:

  • (String)


269
270
271
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 269

def ascii_armored_pgp_public_key
  @ascii_armored_pgp_public_key
end

#commentString

Optional. A descriptive comment. This field may be updated. Corresponds to the JSON property comment

Returns:

  • (String)


274
275
276
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 274

def comment
  @comment
end

#idString

The ID of this public key. Signatures verified by Binary Authorization must include the ID of the public key that can be used to verify them, and that ID must match the contents of this field exactly. Additional restrictions on this field can be imposed based on which public key type is encapsulated. See the documentation on public_key cases below for details. Corresponds to the JSON property id

Returns:

  • (String)


283
284
285
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 283

def id
  @id
end

#pkix_public_keyGoogle::Apis::BinaryauthorizationV1::PkixPublicKey

A public key in the PkixPublicKey format. Public keys of this type are typically textually encoded using the PEM format. Corresponds to the JSON property pkixPublicKey



290
291
292
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 290

def pkix_public_key
  @pkix_public_key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



297
298
299
300
301
302
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 297

def update!(**args)
  @ascii_armored_pgp_public_key = args[:ascii_armored_pgp_public_key] if args.key?(:ascii_armored_pgp_public_key)
  @comment = args[:comment] if args.key?(:comment)
  @id = args[:id] if args.key?(:id)
  @pkix_public_key = args[:pkix_public_key] if args.key?(:pkix_public_key)
end