Show / Hide Table of Contents

Class Fingerprint

A set of properties that uniquely identify a given Docker image.

Inheritance
System.Object
Fingerprint
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 Fingerprint : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

V1Name

Required. The layer ID of the final layer in the Docker image's v1 representation.

Declaration
[JsonProperty("v1Name")]
public virtual string V1Name { get; set; }
Property Value
Type Description
System.String

V2Blob

Required. The ordered list of v2 blobs that represent a given image.

Declaration
[JsonProperty("v2Blob")]
public virtual IList<string> V2Blob { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

V2Name

Output only. The name of the image's v2 blobs computed via: [bottom] := v2_blobbottom := sha256(v2_blob[N] + " " + v2_name[N+1]) Only the name of the final blob is kept.

Declaration
[JsonProperty("v2Name")]
public virtual string V2Name { get; set; }
Property Value
Type Description
System.String

Implements

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