// 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 RequestMetadataOrBuilder extends
// @@protoc_insertion_point(interface_extends:build.bazel.remote.execution.v2.RequestMetadata)
com.google.protobuf.MessageOrBuilder {
/**
*
* The details for the tool invoking the requests.
*
*
* .build.bazel.remote.execution.v2.ToolDetails tool_details = 1;
* @return Whether the toolDetails field is set.
*/
boolean hasToolDetails();
/**
*
* The details for the tool invoking the requests.
*
*
* .build.bazel.remote.execution.v2.ToolDetails tool_details = 1;
* @return The toolDetails.
*/
build.bazel.remote.execution.v2.ToolDetails getToolDetails();
/**
*
* The details for the tool invoking the requests.
*
*
* .build.bazel.remote.execution.v2.ToolDetails tool_details = 1;
*/
build.bazel.remote.execution.v2.ToolDetailsOrBuilder getToolDetailsOrBuilder();
/**
*
* An identifier that ties multiple requests to the same action.
* For example, multiple requests to the CAS, Action Cache, and Execution
* API are used in order to compile foo.cc.
*
*
* string action_id = 2;
* @return The actionId.
*/
java.lang.String getActionId();
/**
*
* An identifier that ties multiple requests to the same action.
* For example, multiple requests to the CAS, Action Cache, and Execution
* API are used in order to compile foo.cc.
*
*
* string action_id = 2;
* @return The bytes for actionId.
*/
com.google.protobuf.ByteString
getActionIdBytes();
/**
*
* An identifier that ties multiple actions together to a final result.
* For example, multiple actions are required to build and run foo_test.
*
*
* string tool_invocation_id = 3;
* @return The toolInvocationId.
*/
java.lang.String getToolInvocationId();
/**
*
* An identifier that ties multiple actions together to a final result.
* For example, multiple actions are required to build and run foo_test.
*
*
* string tool_invocation_id = 3;
* @return The bytes for toolInvocationId.
*/
com.google.protobuf.ByteString
getToolInvocationIdBytes();
/**
*
* An identifier to tie multiple tool invocations together. For example,
* runs of foo_test, bar_test and baz_test on a post-submit of a given patch.
*
*
* string correlated_invocations_id = 4;
* @return The correlatedInvocationsId.
*/
java.lang.String getCorrelatedInvocationsId();
/**
*
* An identifier to tie multiple tool invocations together. For example,
* runs of foo_test, bar_test and baz_test on a post-submit of a given patch.
*
*
* string correlated_invocations_id = 4;
* @return The bytes for correlatedInvocationsId.
*/
com.google.protobuf.ByteString
getCorrelatedInvocationsIdBytes();
}