// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: build/bazel/remote/execution/v2/remote_execution.proto
package build.bazel.remote.execution.v2;
public interface UpdateActionResultRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:build.bazel.remote.execution.v2.UpdateActionResultRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The instance of the execution system to operate against. A server may
* support multiple instances of the execution system (with their own workers,
* storage, caches, etc.). The server MAY require use of this field to select
* between them in an implementation-defined fashion, otherwise it can be
* omitted.
*
*
* string instance_name = 1;
* @return The instanceName.
*/
java.lang.String getInstanceName();
/**
*
* The instance of the execution system to operate against. A server may
* support multiple instances of the execution system (with their own workers,
* storage, caches, etc.). The server MAY require use of this field to select
* between them in an implementation-defined fashion, otherwise it can be
* omitted.
*
*
* string instance_name = 1;
* @return The bytes for instanceName.
*/
com.google.protobuf.ByteString
getInstanceNameBytes();
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is being uploaded.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
* @return Whether the actionDigest field is set.
*/
boolean hasActionDigest();
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is being uploaded.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
* @return The actionDigest.
*/
build.bazel.remote.execution.v2.Digest getActionDigest();
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is being uploaded.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
*/
build.bazel.remote.execution.v2.DigestOrBuilder getActionDigestOrBuilder();
/**
*
* The [ActionResult][build.bazel.remote.execution.v2.ActionResult]
* to store in the cache.
*
*
* .build.bazel.remote.execution.v2.ActionResult action_result = 3;
* @return Whether the actionResult field is set.
*/
boolean hasActionResult();
/**
*
* The [ActionResult][build.bazel.remote.execution.v2.ActionResult]
* to store in the cache.
*
*
* .build.bazel.remote.execution.v2.ActionResult action_result = 3;
* @return The actionResult.
*/
build.bazel.remote.execution.v2.ActionResult getActionResult();
/**
*
* The [ActionResult][build.bazel.remote.execution.v2.ActionResult]
* to store in the cache.
*
*
* .build.bazel.remote.execution.v2.ActionResult action_result = 3;
*/
build.bazel.remote.execution.v2.ActionResultOrBuilder getActionResultOrBuilder();
/**
*
* An optional policy for the results of this execution in the remote cache.
* The server will have a default policy if this is not provided.
* This may be applied to both the ActionResult and the associated blobs.
*
*
* .build.bazel.remote.execution.v2.ResultsCachePolicy results_cache_policy = 4;
* @return Whether the resultsCachePolicy field is set.
*/
boolean hasResultsCachePolicy();
/**
*
* An optional policy for the results of this execution in the remote cache.
* The server will have a default policy if this is not provided.
* This may be applied to both the ActionResult and the associated blobs.
*
*
* .build.bazel.remote.execution.v2.ResultsCachePolicy results_cache_policy = 4;
* @return The resultsCachePolicy.
*/
build.bazel.remote.execution.v2.ResultsCachePolicy getResultsCachePolicy();
/**
*
* An optional policy for the results of this execution in the remote cache.
* The server will have a default policy if this is not provided.
* This may be applied to both the ActionResult and the associated blobs.
*
*
* .build.bazel.remote.execution.v2.ResultsCachePolicy results_cache_policy = 4;
*/
build.bazel.remote.execution.v2.ResultsCachePolicyOrBuilder getResultsCachePolicyOrBuilder();
}