build.bazel.remote.execution.v2.BatchReadBlobsRequestOrBuilder 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 BatchReadBlobsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:build.bazel.remote.execution.v2.BatchReadBlobsRequest)
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();
/**
*
* The individual blob digests.
*
*
* repeated .build.bazel.remote.execution.v2.Digest digests = 2;
*/
java.util.List
getDigestsList();
/**
*
* The individual blob digests.
*
*
* repeated .build.bazel.remote.execution.v2.Digest digests = 2;
*/
build.bazel.remote.execution.v2.Digest getDigests(int index);
/**
*
* The individual blob digests.
*
*
* repeated .build.bazel.remote.execution.v2.Digest digests = 2;
*/
int getDigestsCount();
/**
*
* The individual blob digests.
*
*
* repeated .build.bazel.remote.execution.v2.Digest digests = 2;
*/
java.util.List extends build.bazel.remote.execution.v2.DigestOrBuilder>
getDigestsOrBuilderList();
/**
*
* The individual blob digests.
*
*
* repeated .build.bazel.remote.execution.v2.Digest digests = 2;
*/
build.bazel.remote.execution.v2.DigestOrBuilder getDigestsOrBuilder(
int index);
}