build.bazel.remote.execution.v2.FindMissingBlobsRequestOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: build/bazel/remote/execution/v2/remote_execution.proto
// Protobuf Java Version: 3.25.3
package build.bazel.remote.execution.v2;
public interface FindMissingBlobsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:build.bazel.remote.execution.v2.FindMissingBlobsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The instance of the execution system to operate against. A server may
* support multiple instances of the execution system (with their own workers,
* storage, caches, etc.). The server MAY require use of this field to select
* between them in an implementation-defined fashion, otherwise it can be
* omitted.
*
*
* string instance_name = 1;
* @return The instanceName.
*/
java.lang.String getInstanceName();
/**
*
* The instance of the execution system to operate against. A server may
* support multiple instances of the execution system (with their own workers,
* storage, caches, etc.). The server MAY require use of this field to select
* between them in an implementation-defined fashion, otherwise it can be
* omitted.
*
*
* string instance_name = 1;
* @return The bytes for instanceName.
*/
com.google.protobuf.ByteString
getInstanceNameBytes();
/**
*
* A list of the blobs to check.
*
*
* repeated .build.bazel.remote.execution.v2.Digest blob_digests = 2;
*/
java.util.List
getBlobDigestsList();
/**
*
* A list of the blobs to check.
*
*
* repeated .build.bazel.remote.execution.v2.Digest blob_digests = 2;
*/
build.bazel.remote.execution.v2.Digest getBlobDigests(int index);
/**
*
* A list of the blobs to check.
*
*
* repeated .build.bazel.remote.execution.v2.Digest blob_digests = 2;
*/
int getBlobDigestsCount();
/**
*
* A list of the blobs to check.
*
*
* repeated .build.bazel.remote.execution.v2.Digest blob_digests = 2;
*/
java.util.List extends build.bazel.remote.execution.v2.DigestOrBuilder>
getBlobDigestsOrBuilderList();
/**
*
* A list of the blobs to check.
*
*
* repeated .build.bazel.remote.execution.v2.Digest blob_digests = 2;
*/
build.bazel.remote.execution.v2.DigestOrBuilder getBlobDigestsOrBuilder(
int index);
}