/* * Copyright 2019 The Grafeas Authors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: grafeas/v1/image.proto package io.grafeas.v1; public interface FingerprintOrBuilder extends // @@protoc_insertion_point(interface_extends:grafeas.v1.Fingerprint) com.google.protobuf.MessageOrBuilder { /** * * *
* Required. The layer ID of the final layer in the Docker image's v1 * representation. ** *
string v1_name = 1;
*
* @return The v1Name.
*/
java.lang.String getV1Name();
/**
*
*
* * Required. The layer ID of the final layer in the Docker image's v1 * representation. ** *
string v1_name = 1;
*
* @return The bytes for v1Name.
*/
com.google.protobuf.ByteString getV1NameBytes();
/**
*
*
* * Required. The ordered list of v2 blobs that represent a given image. ** *
repeated string v2_blob = 2;
*
* @return A list containing the v2Blob.
*/
java.util.List* Required. The ordered list of v2 blobs that represent a given image. ** *
repeated string v2_blob = 2;
*
* @return The count of v2Blob.
*/
int getV2BlobCount();
/**
*
*
* * Required. The ordered list of v2 blobs that represent a given image. ** *
repeated string v2_blob = 2;
*
* @param index The index of the element to return.
* @return The v2Blob at the given index.
*/
java.lang.String getV2Blob(int index);
/**
*
*
* * Required. The ordered list of v2 blobs that represent a given image. ** *
repeated string v2_blob = 2;
*
* @param index The index of the value to return.
* @return The bytes of the v2Blob at the given index.
*/
com.google.protobuf.ByteString getV2BlobBytes(int index);
/**
*
*
* * 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;
*
* @return The v2Name.
*/
java.lang.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;
*
* @return The bytes for v2Name.
*/
com.google.protobuf.ByteString getV2NameBytes();
}