Package io.grafeas.v1beta1.image
Interface FingerprintOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Fingerprint
,Fingerprint.Builder
public interface FingerprintOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getV1Name()
Required.com.google.protobuf.ByteString
getV1NameBytes()
Required.String
getV2Blob(int index)
Required.com.google.protobuf.ByteString
getV2BlobBytes(int index)
Required.int
getV2BlobCount()
Required.List<String>
getV2BlobList()
Required.String
getV2Name()
Output only.com.google.protobuf.ByteString
getV2NameBytes()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getV1Name
String getV1Name()
Required. The layer ID of the final layer in the Docker image's v1 representation.
string v1_name = 1;
- Returns:
- The v1Name.
-
getV1NameBytes
com.google.protobuf.ByteString getV1NameBytes()
Required. The layer ID of the final layer in the Docker image's v1 representation.
string v1_name = 1;
- Returns:
- The bytes for v1Name.
-
getV2BlobList
List<String> getV2BlobList()
Required. The ordered list of v2 blobs that represent a given image.
repeated string v2_blob = 2;
- Returns:
- A list containing the v2Blob.
-
getV2BlobCount
int getV2BlobCount()
Required. The ordered list of v2 blobs that represent a given image.
repeated string v2_blob = 2;
- Returns:
- The count of v2Blob.
-
getV2Blob
String getV2Blob(int index)
Required. The ordered list of v2 blobs that represent a given image.
repeated string v2_blob = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The v2Blob at the given index.
-
getV2BlobBytes
com.google.protobuf.ByteString getV2BlobBytes(int index)
Required. The ordered list of v2 blobs that represent a given image.
repeated string v2_blob = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the v2Blob at the given index.
-
getV2Name
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:
- The v2Name.
-
getV2NameBytes
com.google.protobuf.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:
- The bytes for v2Name.
-
-