Class: Google::Apis::BinaryauthorizationV1::PkixPublicKeySet

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

A bundle of PKIX public keys, used to authenticate attestation signatures. Generally, a signature is considered to be authenticated by a PkixPublicKeySet if any of the public keys verify it (i.e. it is an "OR" of the keys).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PkixPublicKeySet

Returns a new instance of PkixPublicKeySet.



842
843
844
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 842

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

Instance Attribute Details

#pkix_public_keysArray<Google::Apis::BinaryauthorizationV1::PkixPublicKey>

Required. pkix_public_keys must have at least one entry. Corresponds to the JSON property pkixPublicKeys



840
841
842
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 840

def pkix_public_keys
  @pkix_public_keys
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



847
848
849
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 847

def update!(**args)
  @pkix_public_keys = args[:pkix_public_keys] if args.key?(:pkix_public_keys)
end