Class: Google::Apis::BinaryauthorizationV1::SimpleSigningAttestationCheck

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

Require a signed DSSE attestation with type SimpleSigning.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SimpleSigningAttestationCheck

Returns a new instance of SimpleSigningAttestationCheck.



1577
1578
1579
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 1577

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

Instance Attribute Details

#attestation_authenticatorsArray<Google::Apis::BinaryauthorizationV1::AttestationAuthenticator>

Required. The authenticators required by this check to verify an attestation. Typically this is one or more PKIX public keys for signature verification. Only one authenticator needs to consider an attestation verified in order for an attestation to be considered fully authenticated. In otherwords, this list of authenticators is an "OR" of the authenticator results. At least one authenticator is required. Corresponds to the JSON property attestationAuthenticators



1561
1562
1563
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 1561

def attestation_authenticators
  @attestation_authenticators
end

#container_analysis_attestation_projectsArray<String>

Optional. The projects where attestations are stored as Container Analysis Occurrences, in the format projects/[PROJECT_ID]. Only one attestation needs to successfully verify an image for this check to pass, so a single verified attestation found in any of container_analysis_attestation_projects is sufficient for the check to pass. A project ID must be used, not a project number. When fetching Occurrences from Container Analysis, only AttestationOccurrence kinds are considered. In the future, additional Occurrence kinds may be added to the query. Maximum number of container_analysis_attestation_projects allowed in each SimpleSigningAttestationCheck is 10. Corresponds to the JSON property containerAnalysisAttestationProjects

Returns:

  • (Array<String>)


1575
1576
1577
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 1575

def container_analysis_attestation_projects
  @container_analysis_attestation_projects
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1582
1583
1584
1585
# File 'lib/google/apis/binaryauthorization_v1/classes.rb', line 1582

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