Interface FingerprintOrBuilder (2.3.0)

public interface FingerprintOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getV1Name()

public abstract String getV1Name()

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

string v1_name = 1;

Returns
TypeDescription
String

The v1Name.

getV1NameBytes()

public abstract ByteString getV1NameBytes()

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

string v1_name = 1;

Returns
TypeDescription
ByteString

The bytes for v1Name.

getV2Blob(int index)

public abstract String getV2Blob(int index)

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

repeated string v2_blob = 2;

Parameter
NameDescription
indexint

The index of the element to return.

Returns
TypeDescription
String

The v2Blob at the given index.

getV2BlobBytes(int index)

public abstract ByteString getV2BlobBytes(int index)

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

repeated string v2_blob = 2;

Parameter
NameDescription
indexint

The index of the value to return.

Returns
TypeDescription
ByteString

The bytes of the v2Blob at the given index.

getV2BlobCount()

public abstract int getV2BlobCount()

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

repeated string v2_blob = 2;

Returns
TypeDescription
int

The count of v2Blob.

getV2BlobList()

public abstract List<String> getV2BlobList()

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

repeated string v2_blob = 2;

Returns
TypeDescription
List<String>

A list containing the v2Blob.

getV2Name()

public abstract String getV2Name()

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

string v2_name = 3;

Returns
TypeDescription
String

The v2Name.

getV2NameBytes()

public abstract ByteString getV2NameBytes()

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

string v2_name = 3;

Returns
TypeDescription
ByteString

The bytes for v2Name.