Show / Hide Table of Contents

Class Attestation

Occurrence that represents a single "attestation". The authenticity of an attestation can be verified using the attached signature. If the verifier trusts the public key of the signer, then verifying the signature is sufficient to establish trust. In this circumstance, the authority to which this attestation is attached is primarily useful for look-up (how to find this attestation if you already know the authority and artifact to be verified) and intent (which authority was this attestation intended to sign for).

Inheritance
System.Object
Attestation
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ContainerAnalysis.v1beta1.Data
Assembly: Google.Apis.ContainerAnalysis.v1beta1.dll
Syntax
public class Attestation : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

GenericSignedAttestation

Declaration
[JsonProperty("genericSignedAttestation")]
public virtual GenericSignedAttestation GenericSignedAttestation { get; set; }
Property Value
Type Description
GenericSignedAttestation

PgpSignedAttestation

A PGP signed attestation.

Declaration
[JsonProperty("pgpSignedAttestation")]
public virtual PgpSignedAttestation PgpSignedAttestation { get; set; }
Property Value
Type Description
PgpSignedAttestation

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top