// 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 GetTreeRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:build.bazel.remote.execution.v2.GetTreeRequest)
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 digest of the root, which must be an encoded
* [Directory][build.bazel.remote.execution.v2.Directory] message
* stored in the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
*
* .build.bazel.remote.execution.v2.Digest root_digest = 2;
* @return Whether the rootDigest field is set.
*/
boolean hasRootDigest();
/**
*
* The digest of the root, which must be an encoded
* [Directory][build.bazel.remote.execution.v2.Directory] message
* stored in the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
*
* .build.bazel.remote.execution.v2.Digest root_digest = 2;
* @return The rootDigest.
*/
build.bazel.remote.execution.v2.Digest getRootDigest();
/**
*
* The digest of the root, which must be an encoded
* [Directory][build.bazel.remote.execution.v2.Directory] message
* stored in the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
*
* .build.bazel.remote.execution.v2.Digest root_digest = 2;
*/
build.bazel.remote.execution.v2.DigestOrBuilder getRootDigestOrBuilder();
/**
*
* A maximum page size to request. If present, the server will request no more
* than this many items. Regardless of whether a page size is specified, the
* server may place its own limit on the number of items to be returned and
* require the client to retrieve more items using a subsequent request.
*
*
* int32 page_size = 3;
* @return The pageSize.
*/
int getPageSize();
/**
*
* A page token, which must be a value received in a previous
* [GetTreeResponse][build.bazel.remote.execution.v2.GetTreeResponse].
* If present, the server will use that token as an offset, returning only
* that page and the ones that succeed it.
*
*
* string page_token = 4;
* @return The pageToken.
*/
java.lang.String getPageToken();
/**
*
* A page token, which must be a value received in a previous
* [GetTreeResponse][build.bazel.remote.execution.v2.GetTreeResponse].
* If present, the server will use that token as an offset, returning only
* that page and the ones that succeed it.
*
*
* string page_token = 4;
* @return The bytes for pageToken.
*/
com.google.protobuf.ByteString
getPageTokenBytes();
}