// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: build/bazel/remote/execution/v2/remote_execution.proto
package build.bazel.remote.execution.v2;
public interface GetActionResultRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:build.bazel.remote.execution.v2.GetActionResultRequest)
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 [Action][build.bazel.remote.execution.v2.Action]
* whose result is requested.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
* @return Whether the actionDigest field is set.
*/
boolean hasActionDigest();
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is requested.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
* @return The actionDigest.
*/
build.bazel.remote.execution.v2.Digest getActionDigest();
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is requested.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
*/
build.bazel.remote.execution.v2.DigestOrBuilder getActionDigestOrBuilder();
/**
*
* A hint to the server to request inlining stdout in the
* [ActionResult][build.bazel.remote.execution.v2.ActionResult] message.
*
*
* bool inline_stdout = 3;
* @return The inlineStdout.
*/
boolean getInlineStdout();
/**
*
* A hint to the server to request inlining stderr in the
* [ActionResult][build.bazel.remote.execution.v2.ActionResult] message.
*
*
* bool inline_stderr = 4;
* @return The inlineStderr.
*/
boolean getInlineStderr();
/**
*
* A hint to the server to inline the contents of the listed output files.
* Each path needs to exactly match one file path in either `output_paths` or
* `output_files` (DEPRECATED since v2.1) in the
* [Command][build.bazel.remote.execution.v2.Command] message.
*
*
* repeated string inline_output_files = 5;
* @return A list containing the inlineOutputFiles.
*/
java.util.List
getInlineOutputFilesList();
/**
*
* A hint to the server to inline the contents of the listed output files.
* Each path needs to exactly match one file path in either `output_paths` or
* `output_files` (DEPRECATED since v2.1) in the
* [Command][build.bazel.remote.execution.v2.Command] message.
*
*
* repeated string inline_output_files = 5;
* @return The count of inlineOutputFiles.
*/
int getInlineOutputFilesCount();
/**
*
* A hint to the server to inline the contents of the listed output files.
* Each path needs to exactly match one file path in either `output_paths` or
* `output_files` (DEPRECATED since v2.1) in the
* [Command][build.bazel.remote.execution.v2.Command] message.
*
*
* repeated string inline_output_files = 5;
* @param index The index of the element to return.
* @return The inlineOutputFiles at the given index.
*/
java.lang.String getInlineOutputFiles(int index);
/**
*
* A hint to the server to inline the contents of the listed output files.
* Each path needs to exactly match one file path in either `output_paths` or
* `output_files` (DEPRECATED since v2.1) in the
* [Command][build.bazel.remote.execution.v2.Command] message.
*
*
* repeated string inline_output_files = 5;
* @param index The index of the value to return.
* @return The bytes of the inlineOutputFiles at the given index.
*/
com.google.protobuf.ByteString
getInlineOutputFilesBytes(int index);
}