Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// 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;
/**
*
* An ActionResult represents the result of an
* [Action][build.bazel.remote.execution.v2.Action] being run.
*
* It is advised that at least one field (for example
* `ActionResult.execution_metadata.Worker`) have a non-default value, to
* ensure that the serialized value is non-empty, which can then be used
* as a basic data sanity check.
*
*
* Protobuf type {@code build.bazel.remote.execution.v2.ActionResult}
*/
public final class ActionResult extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:build.bazel.remote.execution.v2.ActionResult)
ActionResultOrBuilder {
private static final long serialVersionUID = 0L;
// Use ActionResult.newBuilder() to construct.
private ActionResult(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ActionResult() {
outputFiles_ = java.util.Collections.emptyList();
outputFileSymlinks_ = java.util.Collections.emptyList();
outputSymlinks_ = java.util.Collections.emptyList();
outputDirectories_ = java.util.Collections.emptyList();
outputDirectorySymlinks_ = java.util.Collections.emptyList();
stdoutRaw_ = com.google.protobuf.ByteString.EMPTY;
stderrRaw_ = com.google.protobuf.ByteString.EMPTY;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new ActionResult();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_ActionResult_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_ActionResult_fieldAccessorTable
.ensureFieldAccessorsInitialized(
build.bazel.remote.execution.v2.ActionResult.class, build.bazel.remote.execution.v2.ActionResult.Builder.class);
}
private int bitField0_;
public static final int OUTPUT_FILES_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private java.util.List outputFiles_;
/**
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputFile output_files = 2;
*/
@java.lang.Override
public int getOutputFilesCount() {
return outputFiles_.size();
}
/**
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputFile output_files = 2;
*/
@java.lang.Override
public build.bazel.remote.execution.v2.OutputFileOrBuilder getOutputFilesOrBuilder(
int index) {
return outputFiles_.get(index);
}
public static final int OUTPUT_FILE_SYMLINKS_FIELD_NUMBER = 10;
@SuppressWarnings("serial")
private java.util.List outputFileSymlinks_;
/**
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_file_symlinks = 10;
*/
@java.lang.Override
public int getOutputFileSymlinksCount() {
return outputFileSymlinks_.size();
}
/**
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_file_symlinks = 10;
*/
@java.lang.Override
public build.bazel.remote.execution.v2.OutputSymlinkOrBuilder getOutputFileSymlinksOrBuilder(
int index) {
return outputFileSymlinks_.get(index);
}
public static final int OUTPUT_SYMLINKS_FIELD_NUMBER = 12;
@SuppressWarnings("serial")
private java.util.List outputSymlinks_;
/**
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_symlinks = 12;
*/
@java.lang.Override
public int getOutputSymlinksCount() {
return outputSymlinks_.size();
}
/**
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_symlinks = 12;
*/
@java.lang.Override
public build.bazel.remote.execution.v2.OutputSymlinkOrBuilder getOutputSymlinksOrBuilder(
int index) {
return outputSymlinks_.get(index);
}
public static final int OUTPUT_DIRECTORIES_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private java.util.List outputDirectories_;
/**
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
*
* repeated .build.bazel.remote.execution.v2.OutputDirectory output_directories = 3;
*/
@java.lang.Override
public int getOutputDirectoriesCount() {
return outputDirectories_.size();
}
/**
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
*
* repeated .build.bazel.remote.execution.v2.OutputDirectory output_directories = 3;
*/
@java.lang.Override
public build.bazel.remote.execution.v2.OutputDirectoryOrBuilder getOutputDirectoriesOrBuilder(
int index) {
return outputDirectories_.get(index);
}
public static final int OUTPUT_DIRECTORY_SYMLINKS_FIELD_NUMBER = 11;
@SuppressWarnings("serial")
private java.util.List outputDirectorySymlinks_;
/**
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_directory_symlinks = 11;
*/
@java.lang.Override
public int getOutputDirectorySymlinksCount() {
return outputDirectorySymlinks_.size();
}
/**
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_directory_symlinks = 11;
*/
@java.lang.Override
public build.bazel.remote.execution.v2.OutputSymlinkOrBuilder getOutputDirectorySymlinksOrBuilder(
int index) {
return outputDirectorySymlinks_.get(index);
}
public static final int EXIT_CODE_FIELD_NUMBER = 4;
private int exitCode_ = 0;
/**
*
* The exit code of the command.
*
*
* int32 exit_code = 4;
* @return The exitCode.
*/
@java.lang.Override
public int getExitCode() {
return exitCode_;
}
public static final int STDOUT_RAW_FIELD_NUMBER = 5;
private com.google.protobuf.ByteString stdoutRaw_ = com.google.protobuf.ByteString.EMPTY;
/**
*
* The standard output buffer of the action. The server SHOULD NOT inline
* stdout unless requested by the client in the
* [GetActionResultRequest][build.bazel.remote.execution.v2.GetActionResultRequest]
* message. The server MAY omit inlining, even if requested, and MUST do so if inlining
* would cause the response to exceed message size limits.
*
*
* bytes stdout_raw = 5;
* @return The stdoutRaw.
*/
@java.lang.Override
public com.google.protobuf.ByteString getStdoutRaw() {
return stdoutRaw_;
}
public static final int STDOUT_DIGEST_FIELD_NUMBER = 6;
private build.bazel.remote.execution.v2.Digest stdoutDigest_;
/**
*
* The digest for a blob containing the standard output of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
*
* .build.bazel.remote.execution.v2.Digest stdout_digest = 6;
* @return Whether the stdoutDigest field is set.
*/
@java.lang.Override
public boolean hasStdoutDigest() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* The digest for a blob containing the standard output of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard output of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
*
* .build.bazel.remote.execution.v2.Digest stdout_digest = 6;
*/
@java.lang.Override
public build.bazel.remote.execution.v2.DigestOrBuilder getStdoutDigestOrBuilder() {
return stdoutDigest_ == null ? build.bazel.remote.execution.v2.Digest.getDefaultInstance() : stdoutDigest_;
}
public static final int STDERR_RAW_FIELD_NUMBER = 7;
private com.google.protobuf.ByteString stderrRaw_ = com.google.protobuf.ByteString.EMPTY;
/**
*
* The standard error buffer of the action. The server SHOULD NOT inline
* stderr unless requested by the client in the
* [GetActionResultRequest][build.bazel.remote.execution.v2.GetActionResultRequest]
* message. The server MAY omit inlining, even if requested, and MUST do so if inlining
* would cause the response to exceed message size limits.
*
*
* bytes stderr_raw = 7;
* @return The stderrRaw.
*/
@java.lang.Override
public com.google.protobuf.ByteString getStderrRaw() {
return stderrRaw_;
}
public static final int STDERR_DIGEST_FIELD_NUMBER = 8;
private build.bazel.remote.execution.v2.Digest stderrDigest_;
/**
*
* The digest for a blob containing the standard error of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
*
* .build.bazel.remote.execution.v2.Digest stderr_digest = 8;
* @return Whether the stderrDigest field is set.
*/
@java.lang.Override
public boolean hasStderrDigest() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
* The digest for a blob containing the standard error of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard error of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
*
* .build.bazel.remote.execution.v2.Digest stderr_digest = 8;
*/
@java.lang.Override
public build.bazel.remote.execution.v2.DigestOrBuilder getStderrDigestOrBuilder() {
return stderrDigest_ == null ? build.bazel.remote.execution.v2.Digest.getDefaultInstance() : stderrDigest_;
}
public static final int EXECUTION_METADATA_FIELD_NUMBER = 9;
private build.bazel.remote.execution.v2.ExecutedActionMetadata executionMetadata_;
/**
*
* The details of the execution that originally produced this result.
*
*
* .build.bazel.remote.execution.v2.ExecutedActionMetadata execution_metadata = 9;
* @return Whether the executionMetadata field is set.
*/
@java.lang.Override
public boolean hasExecutionMetadata() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
* The details of the execution that originally produced this result.
*
* The details of the execution that originally produced this result.
*
*
* .build.bazel.remote.execution.v2.ExecutedActionMetadata execution_metadata = 9;
*/
@java.lang.Override
public build.bazel.remote.execution.v2.ExecutedActionMetadataOrBuilder getExecutionMetadataOrBuilder() {
return executionMetadata_ == null ? build.bazel.remote.execution.v2.ExecutedActionMetadata.getDefaultInstance() : executionMetadata_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
for (int i = 0; i < outputFiles_.size(); i++) {
output.writeMessage(2, outputFiles_.get(i));
}
for (int i = 0; i < outputDirectories_.size(); i++) {
output.writeMessage(3, outputDirectories_.get(i));
}
if (exitCode_ != 0) {
output.writeInt32(4, exitCode_);
}
if (!stdoutRaw_.isEmpty()) {
output.writeBytes(5, stdoutRaw_);
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(6, getStdoutDigest());
}
if (!stderrRaw_.isEmpty()) {
output.writeBytes(7, stderrRaw_);
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(8, getStderrDigest());
}
if (((bitField0_ & 0x00000004) != 0)) {
output.writeMessage(9, getExecutionMetadata());
}
for (int i = 0; i < outputFileSymlinks_.size(); i++) {
output.writeMessage(10, outputFileSymlinks_.get(i));
}
for (int i = 0; i < outputDirectorySymlinks_.size(); i++) {
output.writeMessage(11, outputDirectorySymlinks_.get(i));
}
for (int i = 0; i < outputSymlinks_.size(); i++) {
output.writeMessage(12, outputSymlinks_.get(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < outputFiles_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, outputFiles_.get(i));
}
for (int i = 0; i < outputDirectories_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, outputDirectories_.get(i));
}
if (exitCode_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(4, exitCode_);
}
if (!stdoutRaw_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(5, stdoutRaw_);
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(6, getStdoutDigest());
}
if (!stderrRaw_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(7, stderrRaw_);
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(8, getStderrDigest());
}
if (((bitField0_ & 0x00000004) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(9, getExecutionMetadata());
}
for (int i = 0; i < outputFileSymlinks_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(10, outputFileSymlinks_.get(i));
}
for (int i = 0; i < outputDirectorySymlinks_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(11, outputDirectorySymlinks_.get(i));
}
for (int i = 0; i < outputSymlinks_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(12, outputSymlinks_.get(i));
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof build.bazel.remote.execution.v2.ActionResult)) {
return super.equals(obj);
}
build.bazel.remote.execution.v2.ActionResult other = (build.bazel.remote.execution.v2.ActionResult) obj;
if (!getOutputFilesList()
.equals(other.getOutputFilesList())) return false;
if (!getOutputFileSymlinksList()
.equals(other.getOutputFileSymlinksList())) return false;
if (!getOutputSymlinksList()
.equals(other.getOutputSymlinksList())) return false;
if (!getOutputDirectoriesList()
.equals(other.getOutputDirectoriesList())) return false;
if (!getOutputDirectorySymlinksList()
.equals(other.getOutputDirectorySymlinksList())) return false;
if (getExitCode()
!= other.getExitCode()) return false;
if (!getStdoutRaw()
.equals(other.getStdoutRaw())) return false;
if (hasStdoutDigest() != other.hasStdoutDigest()) return false;
if (hasStdoutDigest()) {
if (!getStdoutDigest()
.equals(other.getStdoutDigest())) return false;
}
if (!getStderrRaw()
.equals(other.getStderrRaw())) return false;
if (hasStderrDigest() != other.hasStderrDigest()) return false;
if (hasStderrDigest()) {
if (!getStderrDigest()
.equals(other.getStderrDigest())) return false;
}
if (hasExecutionMetadata() != other.hasExecutionMetadata()) return false;
if (hasExecutionMetadata()) {
if (!getExecutionMetadata()
.equals(other.getExecutionMetadata())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (getOutputFilesCount() > 0) {
hash = (37 * hash) + OUTPUT_FILES_FIELD_NUMBER;
hash = (53 * hash) + getOutputFilesList().hashCode();
}
if (getOutputFileSymlinksCount() > 0) {
hash = (37 * hash) + OUTPUT_FILE_SYMLINKS_FIELD_NUMBER;
hash = (53 * hash) + getOutputFileSymlinksList().hashCode();
}
if (getOutputSymlinksCount() > 0) {
hash = (37 * hash) + OUTPUT_SYMLINKS_FIELD_NUMBER;
hash = (53 * hash) + getOutputSymlinksList().hashCode();
}
if (getOutputDirectoriesCount() > 0) {
hash = (37 * hash) + OUTPUT_DIRECTORIES_FIELD_NUMBER;
hash = (53 * hash) + getOutputDirectoriesList().hashCode();
}
if (getOutputDirectorySymlinksCount() > 0) {
hash = (37 * hash) + OUTPUT_DIRECTORY_SYMLINKS_FIELD_NUMBER;
hash = (53 * hash) + getOutputDirectorySymlinksList().hashCode();
}
hash = (37 * hash) + EXIT_CODE_FIELD_NUMBER;
hash = (53 * hash) + getExitCode();
hash = (37 * hash) + STDOUT_RAW_FIELD_NUMBER;
hash = (53 * hash) + getStdoutRaw().hashCode();
if (hasStdoutDigest()) {
hash = (37 * hash) + STDOUT_DIGEST_FIELD_NUMBER;
hash = (53 * hash) + getStdoutDigest().hashCode();
}
hash = (37 * hash) + STDERR_RAW_FIELD_NUMBER;
hash = (53 * hash) + getStderrRaw().hashCode();
if (hasStderrDigest()) {
hash = (37 * hash) + STDERR_DIGEST_FIELD_NUMBER;
hash = (53 * hash) + getStderrDigest().hashCode();
}
if (hasExecutionMetadata()) {
hash = (37 * hash) + EXECUTION_METADATA_FIELD_NUMBER;
hash = (53 * hash) + getExecutionMetadata().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static build.bazel.remote.execution.v2.ActionResult parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.bazel.remote.execution.v2.ActionResult parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static build.bazel.remote.execution.v2.ActionResult parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.bazel.remote.execution.v2.ActionResult parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static build.bazel.remote.execution.v2.ActionResult parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.bazel.remote.execution.v2.ActionResult parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static build.bazel.remote.execution.v2.ActionResult parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static build.bazel.remote.execution.v2.ActionResult parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static build.bazel.remote.execution.v2.ActionResult parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static build.bazel.remote.execution.v2.ActionResult parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static build.bazel.remote.execution.v2.ActionResult parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static build.bazel.remote.execution.v2.ActionResult parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(build.bazel.remote.execution.v2.ActionResult prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* An ActionResult represents the result of an
* [Action][build.bazel.remote.execution.v2.Action] being run.
*
* It is advised that at least one field (for example
* `ActionResult.execution_metadata.Worker`) have a non-default value, to
* ensure that the serialized value is non-empty, which can then be used
* as a basic data sanity check.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputFile output_files = 2;
*/
public int getOutputFilesCount() {
if (outputFilesBuilder_ == null) {
return outputFiles_.size();
} else {
return outputFilesBuilder_.getCount();
}
}
/**
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputFile output_files = 2;
*/
public Builder setOutputFiles(
int index, build.bazel.remote.execution.v2.OutputFile value) {
if (outputFilesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputFilesIsMutable();
outputFiles_.set(index, value);
onChanged();
} else {
outputFilesBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputFile output_files = 2;
*/
public Builder addOutputFiles(build.bazel.remote.execution.v2.OutputFile value) {
if (outputFilesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputFilesIsMutable();
outputFiles_.add(value);
onChanged();
} else {
outputFilesBuilder_.addMessage(value);
}
return this;
}
/**
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputFile output_files = 2;
*/
public Builder addOutputFiles(
int index, build.bazel.remote.execution.v2.OutputFile value) {
if (outputFilesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputFilesIsMutable();
outputFiles_.add(index, value);
onChanged();
} else {
outputFilesBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputFile output_files = 2;
*/
public build.bazel.remote.execution.v2.OutputFile.Builder getOutputFilesBuilder(
int index) {
return getOutputFilesFieldBuilder().getBuilder(index);
}
/**
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputFile output_files = 2;
*/
public build.bazel.remote.execution.v2.OutputFileOrBuilder getOutputFilesOrBuilder(
int index) {
if (outputFilesBuilder_ == null) {
return outputFiles_.get(index); } else {
return outputFilesBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action. For each output file requested in the
* `output_files` or `output_paths` field of the Action, if the corresponding
* file existed after the action completed, a single entry will be present
* either in this field, or the `output_file_symlinks` field if the file was
* a symbolic link to another file (`output_symlinks` field after v2.1).
*
* If an output listed in `output_files` was found, but was a directory rather
* than a regular file, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_file_symlinks = 10;
*/
public int getOutputFileSymlinksCount() {
if (outputFileSymlinksBuilder_ == null) {
return outputFileSymlinks_.size();
} else {
return outputFileSymlinksBuilder_.getCount();
}
}
/**
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_file_symlinks = 10;
*/
public Builder setOutputFileSymlinks(
int index, build.bazel.remote.execution.v2.OutputSymlink value) {
if (outputFileSymlinksBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputFileSymlinksIsMutable();
outputFileSymlinks_.set(index, value);
onChanged();
} else {
outputFileSymlinksBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_file_symlinks = 10;
*/
public Builder addOutputFileSymlinks(build.bazel.remote.execution.v2.OutputSymlink value) {
if (outputFileSymlinksBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputFileSymlinksIsMutable();
outputFileSymlinks_.add(value);
onChanged();
} else {
outputFileSymlinksBuilder_.addMessage(value);
}
return this;
}
/**
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_file_symlinks = 10;
*/
public Builder addOutputFileSymlinks(
int index, build.bazel.remote.execution.v2.OutputSymlink value) {
if (outputFileSymlinksBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputFileSymlinksIsMutable();
outputFileSymlinks_.add(index, value);
onChanged();
} else {
outputFileSymlinksBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_file_symlinks = 10;
*/
public build.bazel.remote.execution.v2.OutputSymlink.Builder getOutputFileSymlinksBuilder(
int index) {
return getOutputFileSymlinksFieldBuilder().getBuilder(index);
}
/**
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_file_symlinks = 10;
*/
public build.bazel.remote.execution.v2.OutputSymlinkOrBuilder getOutputFileSymlinksOrBuilder(
int index) {
if (outputFileSymlinksBuilder_ == null) {
return outputFileSymlinks_.get(index); } else {
return outputFileSymlinksBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output files of the action that are symbolic links to other files. Those
* may be links to other output files, or input files, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output file requested in the `output_files` or `output_paths`
* field of the Action, if the corresponding file existed after
* the action completed, a single entry will be present either in this field,
* or in the `output_files` field, if the file was not a symbolic link.
*
* If an output symbolic link of the same name as listed in `output_files` of
* the Command was found, but its target type was not a regular file, the
* server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_symlinks = 12;
*/
public int getOutputSymlinksCount() {
if (outputSymlinksBuilder_ == null) {
return outputSymlinks_.size();
} else {
return outputSymlinksBuilder_.getCount();
}
}
/**
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_symlinks = 12;
*/
public Builder setOutputSymlinks(
int index, build.bazel.remote.execution.v2.OutputSymlink value) {
if (outputSymlinksBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputSymlinksIsMutable();
outputSymlinks_.set(index, value);
onChanged();
} else {
outputSymlinksBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_symlinks = 12;
*/
public Builder addOutputSymlinks(build.bazel.remote.execution.v2.OutputSymlink value) {
if (outputSymlinksBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputSymlinksIsMutable();
outputSymlinks_.add(value);
onChanged();
} else {
outputSymlinksBuilder_.addMessage(value);
}
return this;
}
/**
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_symlinks = 12;
*/
public Builder addOutputSymlinks(
int index, build.bazel.remote.execution.v2.OutputSymlink value) {
if (outputSymlinksBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputSymlinksIsMutable();
outputSymlinks_.add(index, value);
onChanged();
} else {
outputSymlinksBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_symlinks = 12;
*/
public build.bazel.remote.execution.v2.OutputSymlink.Builder getOutputSymlinksBuilder(
int index) {
return getOutputSymlinksFieldBuilder().getBuilder(index);
}
/**
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_symlinks = 12;
*/
public build.bazel.remote.execution.v2.OutputSymlinkOrBuilder getOutputSymlinksOrBuilder(
int index) {
if (outputSymlinksBuilder_ == null) {
return outputSymlinks_.get(index); } else {
return outputSymlinksBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* New in v2.1: this field will only be populated if the command
* `output_paths` field was used, and not the pre v2.1 `output_files` or
* `output_directories` fields.
* The output paths of the action that are symbolic links to other paths. Those
* may be links to other outputs, or inputs, or even absolute paths
* outside of the working directory, if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* A single entry for each output requested in `output_paths`
* field of the Action, if the corresponding path existed after
* the action completed and was a symbolic link.
*
* If the action does not produce a requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
*
* repeated .build.bazel.remote.execution.v2.OutputDirectory output_directories = 3;
*/
public int getOutputDirectoriesCount() {
if (outputDirectoriesBuilder_ == null) {
return outputDirectories_.size();
} else {
return outputDirectoriesBuilder_.getCount();
}
}
/**
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
*
* repeated .build.bazel.remote.execution.v2.OutputDirectory output_directories = 3;
*/
public Builder setOutputDirectories(
int index, build.bazel.remote.execution.v2.OutputDirectory value) {
if (outputDirectoriesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputDirectoriesIsMutable();
outputDirectories_.set(index, value);
onChanged();
} else {
outputDirectoriesBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
*
* repeated .build.bazel.remote.execution.v2.OutputDirectory output_directories = 3;
*/
public Builder addOutputDirectories(build.bazel.remote.execution.v2.OutputDirectory value) {
if (outputDirectoriesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputDirectoriesIsMutable();
outputDirectories_.add(value);
onChanged();
} else {
outputDirectoriesBuilder_.addMessage(value);
}
return this;
}
/**
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
*
* repeated .build.bazel.remote.execution.v2.OutputDirectory output_directories = 3;
*/
public Builder addOutputDirectories(
int index, build.bazel.remote.execution.v2.OutputDirectory value) {
if (outputDirectoriesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputDirectoriesIsMutable();
outputDirectories_.add(index, value);
onChanged();
} else {
outputDirectoriesBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
*
* repeated .build.bazel.remote.execution.v2.OutputDirectory output_directories = 3;
*/
public build.bazel.remote.execution.v2.OutputDirectory.Builder getOutputDirectoriesBuilder(
int index) {
return getOutputDirectoriesFieldBuilder().getBuilder(index);
}
/**
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
*
* repeated .build.bazel.remote.execution.v2.OutputDirectory output_directories = 3;
*/
public build.bazel.remote.execution.v2.OutputDirectoryOrBuilder getOutputDirectoriesOrBuilder(
int index) {
if (outputDirectoriesBuilder_ == null) {
return outputDirectories_.get(index); } else {
return outputDirectoriesBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action. For each output directory requested
* in the `output_directories` or `output_paths` field of the Action, if the
* corresponding directory existed after the action completed, a single entry
* will be present in the output list, which will contain the digest of a
* [Tree][build.bazel.remote.execution.v2.Tree] message containing the
* directory tree, and the path equal exactly to the corresponding Action
* output_directories member.
*
* As an example, suppose the Action had an output directory `a/b/dir` and the
* execution produced the following contents in `a/b/dir`: a file named `bar`
* and a directory named `foo` with an executable file named `baz`. Then,
* output_directory will contain (hashes shortened for readability):
*
* ```json
* // OutputDirectory proto:
* {
* path: "a/b/dir"
* tree_digest: {
* hash: "4a73bc9d03...",
* size: 55
* }
* }
* // Tree proto with hash "4a73bc9d03..." and size 55:
* {
* root: {
* files: [
* {
* name: "bar",
* digest: {
* hash: "4a73bc9d03...",
* size: 65534
* }
* }
* ],
* directories: [
* {
* name: "foo",
* digest: {
* hash: "4cf2eda940...",
* size: 43
* }
* }
* ]
* }
* children : {
* // (Directory proto with hash "4cf2eda940..." and size 43)
* files: [
* {
* name: "baz",
* digest: {
* hash: "b2c941073e...",
* size: 1294,
* },
* is_executable: true
* }
* ]
* }
* }
* ```
* If an output of the same name as listed in `output_files` of
* the Command was found in `output_directories`, but was not a directory, the
* server will return a FAILED_PRECONDITION.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_directory_symlinks = 11;
*/
public int getOutputDirectorySymlinksCount() {
if (outputDirectorySymlinksBuilder_ == null) {
return outputDirectorySymlinks_.size();
} else {
return outputDirectorySymlinksBuilder_.getCount();
}
}
/**
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_directory_symlinks = 11;
*/
public Builder setOutputDirectorySymlinks(
int index, build.bazel.remote.execution.v2.OutputSymlink value) {
if (outputDirectorySymlinksBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputDirectorySymlinksIsMutable();
outputDirectorySymlinks_.set(index, value);
onChanged();
} else {
outputDirectorySymlinksBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_directory_symlinks = 11;
*/
public Builder addOutputDirectorySymlinks(build.bazel.remote.execution.v2.OutputSymlink value) {
if (outputDirectorySymlinksBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputDirectorySymlinksIsMutable();
outputDirectorySymlinks_.add(value);
onChanged();
} else {
outputDirectorySymlinksBuilder_.addMessage(value);
}
return this;
}
/**
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_directory_symlinks = 11;
*/
public Builder addOutputDirectorySymlinks(
int index, build.bazel.remote.execution.v2.OutputSymlink value) {
if (outputDirectorySymlinksBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputDirectorySymlinksIsMutable();
outputDirectorySymlinks_.add(index, value);
onChanged();
} else {
outputDirectorySymlinksBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_directory_symlinks = 11;
*/
public build.bazel.remote.execution.v2.OutputSymlink.Builder getOutputDirectorySymlinksBuilder(
int index) {
return getOutputDirectorySymlinksFieldBuilder().getBuilder(index);
}
/**
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
*
* repeated .build.bazel.remote.execution.v2.OutputSymlink output_directory_symlinks = 11;
*/
public build.bazel.remote.execution.v2.OutputSymlinkOrBuilder getOutputDirectorySymlinksOrBuilder(
int index) {
if (outputDirectorySymlinksBuilder_ == null) {
return outputDirectorySymlinks_.get(index); } else {
return outputDirectorySymlinksBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The output directories of the action that are symbolic links to other
* directories. Those may be links to other output directories, or input
* directories, or even absolute paths outside of the working directory,
* if the server supports
* [SymlinkAbsolutePathStrategy.ALLOWED][build.bazel.remote.execution.v2.CacheCapabilities.SymlinkAbsolutePathStrategy].
* For each output directory requested in the `output_directories` field of
* the Action, if the directory existed after the action completed, a
* single entry will be present either in this field, or in the
* `output_directories` field, if the directory was not a symbolic link.
*
* If an output of the same name was found, but was a symbolic link to a file
* instead of a directory, the server will return a FAILED_PRECONDITION.
* If the action does not produce the requested output, then that output
* will be omitted from the list. The server is free to arrange the output
* list as desired; clients MUST NOT assume that the output list is sorted.
*
* DEPRECATED as of v2.1. Servers that wish to be compatible with v2.0 API
* should still populate this field in addition to `output_symlinks`.
*
* The standard output buffer of the action. The server SHOULD NOT inline
* stdout unless requested by the client in the
* [GetActionResultRequest][build.bazel.remote.execution.v2.GetActionResultRequest]
* message. The server MAY omit inlining, even if requested, and MUST do so if inlining
* would cause the response to exceed message size limits.
*
* The standard output buffer of the action. The server SHOULD NOT inline
* stdout unless requested by the client in the
* [GetActionResultRequest][build.bazel.remote.execution.v2.GetActionResultRequest]
* message. The server MAY omit inlining, even if requested, and MUST do so if inlining
* would cause the response to exceed message size limits.
*
*
* bytes stdout_raw = 5;
* @param value The stdoutRaw to set.
* @return This builder for chaining.
*/
public Builder setStdoutRaw(com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
stdoutRaw_ = value;
bitField0_ |= 0x00000040;
onChanged();
return this;
}
/**
*
* The standard output buffer of the action. The server SHOULD NOT inline
* stdout unless requested by the client in the
* [GetActionResultRequest][build.bazel.remote.execution.v2.GetActionResultRequest]
* message. The server MAY omit inlining, even if requested, and MUST do so if inlining
* would cause the response to exceed message size limits.
*
* The digest for a blob containing the standard output of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
*
* .build.bazel.remote.execution.v2.Digest stdout_digest = 6;
* @return Whether the stdoutDigest field is set.
*/
public boolean hasStdoutDigest() {
return ((bitField0_ & 0x00000080) != 0);
}
/**
*
* The digest for a blob containing the standard output of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard output of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard output of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard output of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard output of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard output of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard output of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard output of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The standard error buffer of the action. The server SHOULD NOT inline
* stderr unless requested by the client in the
* [GetActionResultRequest][build.bazel.remote.execution.v2.GetActionResultRequest]
* message. The server MAY omit inlining, even if requested, and MUST do so if inlining
* would cause the response to exceed message size limits.
*
* The standard error buffer of the action. The server SHOULD NOT inline
* stderr unless requested by the client in the
* [GetActionResultRequest][build.bazel.remote.execution.v2.GetActionResultRequest]
* message. The server MAY omit inlining, even if requested, and MUST do so if inlining
* would cause the response to exceed message size limits.
*
*
* bytes stderr_raw = 7;
* @param value The stderrRaw to set.
* @return This builder for chaining.
*/
public Builder setStderrRaw(com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
stderrRaw_ = value;
bitField0_ |= 0x00000100;
onChanged();
return this;
}
/**
*
* The standard error buffer of the action. The server SHOULD NOT inline
* stderr unless requested by the client in the
* [GetActionResultRequest][build.bazel.remote.execution.v2.GetActionResultRequest]
* message. The server MAY omit inlining, even if requested, and MUST do so if inlining
* would cause the response to exceed message size limits.
*
* The digest for a blob containing the standard error of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
*
* .build.bazel.remote.execution.v2.Digest stderr_digest = 8;
* @return Whether the stderrDigest field is set.
*/
public boolean hasStderrDigest() {
return ((bitField0_ & 0x00000200) != 0);
}
/**
*
* The digest for a blob containing the standard error of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard error of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard error of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard error of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard error of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard error of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard error of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*
* The digest for a blob containing the standard error of the action, which
* can be retrieved from the
* [ContentAddressableStorage][build.bazel.remote.execution.v2.ContentAddressableStorage].
*