All Downloads are FREE. Search and download functionalities are using the official Maven repository.

build.bazel.remote.execution.v2.ExecuteRequest Maven / Gradle / Ivy

// 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;

/**
 * 
 * A request message for
 * [Execution.Execute][build.bazel.remote.execution.v2.Execution.Execute].
 * 
* * Protobuf type {@code build.bazel.remote.execution.v2.ExecuteRequest} */ public final class ExecuteRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:build.bazel.remote.execution.v2.ExecuteRequest) ExecuteRequestOrBuilder { private static final long serialVersionUID = 0L; // Use ExecuteRequest.newBuilder() to construct. private ExecuteRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private ExecuteRequest() { instanceName_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new ExecuteRequest(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_ExecuteRequest_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_ExecuteRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( build.bazel.remote.execution.v2.ExecuteRequest.class, build.bazel.remote.execution.v2.ExecuteRequest.Builder.class); } private int bitField0_; public static final int INSTANCE_NAME_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object instanceName_ = ""; /** *
   * 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.Override public java.lang.String getInstanceName() { java.lang.Object ref = instanceName_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); instanceName_ = s; return s; } } /** *
   * 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. */ @java.lang.Override public com.google.protobuf.ByteString getInstanceNameBytes() { java.lang.Object ref = instanceName_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); instanceName_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int SKIP_CACHE_LOOKUP_FIELD_NUMBER = 3; private boolean skipCacheLookup_ = false; /** *
   * If true, the action will be executed even if its result is already
   * present in the [ActionCache][build.bazel.remote.execution.v2.ActionCache].
   * The execution is still allowed to be merged with other in-flight executions
   * of the same action, however - semantically, the service MUST only guarantee
   * that the results of an execution with this field set were not visible
   * before the corresponding execution request was sent.
   * Note that actions from execution requests setting this field set are still
   * eligible to be entered into the action cache upon completion, and services
   * SHOULD overwrite any existing entries that may exist. This allows
   * skip_cache_lookup requests to be used as a mechanism for replacing action
   * cache entries that reference outputs no longer available or that are
   * poisoned in any way.
   * If false, the result may be served from the action cache.
   * 
* * bool skip_cache_lookup = 3; * @return The skipCacheLookup. */ @java.lang.Override public boolean getSkipCacheLookup() { return skipCacheLookup_; } public static final int ACTION_DIGEST_FIELD_NUMBER = 6; private build.bazel.remote.execution.v2.Digest actionDigest_; /** *
   * The digest of the [Action][build.bazel.remote.execution.v2.Action] to
   * execute.
   * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 6; * @return Whether the actionDigest field is set. */ @java.lang.Override public boolean hasActionDigest() { return ((bitField0_ & 0x00000001) != 0); } /** *
   * The digest of the [Action][build.bazel.remote.execution.v2.Action] to
   * execute.
   * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 6; * @return The actionDigest. */ @java.lang.Override public build.bazel.remote.execution.v2.Digest getActionDigest() { return actionDigest_ == null ? build.bazel.remote.execution.v2.Digest.getDefaultInstance() : actionDigest_; } /** *
   * The digest of the [Action][build.bazel.remote.execution.v2.Action] to
   * execute.
   * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 6; */ @java.lang.Override public build.bazel.remote.execution.v2.DigestOrBuilder getActionDigestOrBuilder() { return actionDigest_ == null ? build.bazel.remote.execution.v2.Digest.getDefaultInstance() : actionDigest_; } public static final int EXECUTION_POLICY_FIELD_NUMBER = 7; private build.bazel.remote.execution.v2.ExecutionPolicy executionPolicy_; /** *
   * An optional policy for execution of the action.
   * The server will have a default policy if this is not provided.
   * 
* * .build.bazel.remote.execution.v2.ExecutionPolicy execution_policy = 7; * @return Whether the executionPolicy field is set. */ @java.lang.Override public boolean hasExecutionPolicy() { return ((bitField0_ & 0x00000002) != 0); } /** *
   * An optional policy for execution of the action.
   * The server will have a default policy if this is not provided.
   * 
* * .build.bazel.remote.execution.v2.ExecutionPolicy execution_policy = 7; * @return The executionPolicy. */ @java.lang.Override public build.bazel.remote.execution.v2.ExecutionPolicy getExecutionPolicy() { return executionPolicy_ == null ? build.bazel.remote.execution.v2.ExecutionPolicy.getDefaultInstance() : executionPolicy_; } /** *
   * An optional policy for execution of the action.
   * The server will have a default policy if this is not provided.
   * 
* * .build.bazel.remote.execution.v2.ExecutionPolicy execution_policy = 7; */ @java.lang.Override public build.bazel.remote.execution.v2.ExecutionPolicyOrBuilder getExecutionPolicyOrBuilder() { return executionPolicy_ == null ? build.bazel.remote.execution.v2.ExecutionPolicy.getDefaultInstance() : executionPolicy_; } public static final int RESULTS_CACHE_POLICY_FIELD_NUMBER = 8; private build.bazel.remote.execution.v2.ResultsCachePolicy resultsCachePolicy_; /** *
   * 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 = 8; * @return Whether the resultsCachePolicy field is set. */ @java.lang.Override public boolean hasResultsCachePolicy() { return ((bitField0_ & 0x00000004) != 0); } /** *
   * 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 = 8; * @return The resultsCachePolicy. */ @java.lang.Override public build.bazel.remote.execution.v2.ResultsCachePolicy getResultsCachePolicy() { return resultsCachePolicy_ == null ? build.bazel.remote.execution.v2.ResultsCachePolicy.getDefaultInstance() : resultsCachePolicy_; } /** *
   * 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 = 8; */ @java.lang.Override public build.bazel.remote.execution.v2.ResultsCachePolicyOrBuilder getResultsCachePolicyOrBuilder() { return resultsCachePolicy_ == null ? build.bazel.remote.execution.v2.ResultsCachePolicy.getDefaultInstance() : resultsCachePolicy_; } 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 { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(instanceName_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, instanceName_); } if (skipCacheLookup_ != false) { output.writeBool(3, skipCacheLookup_); } if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(6, getActionDigest()); } if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(7, getExecutionPolicy()); } if (((bitField0_ & 0x00000004) != 0)) { output.writeMessage(8, getResultsCachePolicy()); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(instanceName_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, instanceName_); } if (skipCacheLookup_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(3, skipCacheLookup_); } if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(6, getActionDigest()); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(7, getExecutionPolicy()); } if (((bitField0_ & 0x00000004) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(8, getResultsCachePolicy()); } 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.ExecuteRequest)) { return super.equals(obj); } build.bazel.remote.execution.v2.ExecuteRequest other = (build.bazel.remote.execution.v2.ExecuteRequest) obj; if (!getInstanceName() .equals(other.getInstanceName())) return false; if (getSkipCacheLookup() != other.getSkipCacheLookup()) return false; if (hasActionDigest() != other.hasActionDigest()) return false; if (hasActionDigest()) { if (!getActionDigest() .equals(other.getActionDigest())) return false; } if (hasExecutionPolicy() != other.hasExecutionPolicy()) return false; if (hasExecutionPolicy()) { if (!getExecutionPolicy() .equals(other.getExecutionPolicy())) return false; } if (hasResultsCachePolicy() != other.hasResultsCachePolicy()) return false; if (hasResultsCachePolicy()) { if (!getResultsCachePolicy() .equals(other.getResultsCachePolicy())) 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(); hash = (37 * hash) + INSTANCE_NAME_FIELD_NUMBER; hash = (53 * hash) + getInstanceName().hashCode(); hash = (37 * hash) + SKIP_CACHE_LOOKUP_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getSkipCacheLookup()); if (hasActionDigest()) { hash = (37 * hash) + ACTION_DIGEST_FIELD_NUMBER; hash = (53 * hash) + getActionDigest().hashCode(); } if (hasExecutionPolicy()) { hash = (37 * hash) + EXECUTION_POLICY_FIELD_NUMBER; hash = (53 * hash) + getExecutionPolicy().hashCode(); } if (hasResultsCachePolicy()) { hash = (37 * hash) + RESULTS_CACHE_POLICY_FIELD_NUMBER; hash = (53 * hash) + getResultsCachePolicy().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static build.bazel.remote.execution.v2.ExecuteRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static build.bazel.remote.execution.v2.ExecuteRequest 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.ExecuteRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static build.bazel.remote.execution.v2.ExecuteRequest 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.ExecuteRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static build.bazel.remote.execution.v2.ExecuteRequest 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.ExecuteRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static build.bazel.remote.execution.v2.ExecuteRequest 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.ExecuteRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static build.bazel.remote.execution.v2.ExecuteRequest 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.ExecuteRequest 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.ExecuteRequest 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.ExecuteRequest 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; } /** *
   * A request message for
   * [Execution.Execute][build.bazel.remote.execution.v2.Execution.Execute].
   * 
* * Protobuf type {@code build.bazel.remote.execution.v2.ExecuteRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:build.bazel.remote.execution.v2.ExecuteRequest) build.bazel.remote.execution.v2.ExecuteRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_ExecuteRequest_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_ExecuteRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( build.bazel.remote.execution.v2.ExecuteRequest.class, build.bazel.remote.execution.v2.ExecuteRequest.Builder.class); } // Construct using build.bazel.remote.execution.v2.ExecuteRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getActionDigestFieldBuilder(); getExecutionPolicyFieldBuilder(); getResultsCachePolicyFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; instanceName_ = ""; skipCacheLookup_ = false; actionDigest_ = null; if (actionDigestBuilder_ != null) { actionDigestBuilder_.dispose(); actionDigestBuilder_ = null; } executionPolicy_ = null; if (executionPolicyBuilder_ != null) { executionPolicyBuilder_.dispose(); executionPolicyBuilder_ = null; } resultsCachePolicy_ = null; if (resultsCachePolicyBuilder_ != null) { resultsCachePolicyBuilder_.dispose(); resultsCachePolicyBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_ExecuteRequest_descriptor; } @java.lang.Override public build.bazel.remote.execution.v2.ExecuteRequest getDefaultInstanceForType() { return build.bazel.remote.execution.v2.ExecuteRequest.getDefaultInstance(); } @java.lang.Override public build.bazel.remote.execution.v2.ExecuteRequest build() { build.bazel.remote.execution.v2.ExecuteRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public build.bazel.remote.execution.v2.ExecuteRequest buildPartial() { build.bazel.remote.execution.v2.ExecuteRequest result = new build.bazel.remote.execution.v2.ExecuteRequest(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(build.bazel.remote.execution.v2.ExecuteRequest result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.instanceName_ = instanceName_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.skipCacheLookup_ = skipCacheLookup_; } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000004) != 0)) { result.actionDigest_ = actionDigestBuilder_ == null ? actionDigest_ : actionDigestBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000008) != 0)) { result.executionPolicy_ = executionPolicyBuilder_ == null ? executionPolicy_ : executionPolicyBuilder_.build(); to_bitField0_ |= 0x00000002; } if (((from_bitField0_ & 0x00000010) != 0)) { result.resultsCachePolicy_ = resultsCachePolicyBuilder_ == null ? resultsCachePolicy_ : resultsCachePolicyBuilder_.build(); to_bitField0_ |= 0x00000004; } result.bitField0_ |= to_bitField0_; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof build.bazel.remote.execution.v2.ExecuteRequest) { return mergeFrom((build.bazel.remote.execution.v2.ExecuteRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(build.bazel.remote.execution.v2.ExecuteRequest other) { if (other == build.bazel.remote.execution.v2.ExecuteRequest.getDefaultInstance()) return this; if (!other.getInstanceName().isEmpty()) { instanceName_ = other.instanceName_; bitField0_ |= 0x00000001; onChanged(); } if (other.getSkipCacheLookup() != false) { setSkipCacheLookup(other.getSkipCacheLookup()); } if (other.hasActionDigest()) { mergeActionDigest(other.getActionDigest()); } if (other.hasExecutionPolicy()) { mergeExecutionPolicy(other.getExecutionPolicy()); } if (other.hasResultsCachePolicy()) { mergeResultsCachePolicy(other.getResultsCachePolicy()); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { instanceName_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 24: { skipCacheLookup_ = input.readBool(); bitField0_ |= 0x00000002; break; } // case 24 case 50: { input.readMessage( getActionDigestFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000004; break; } // case 50 case 58: { input.readMessage( getExecutionPolicyFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000008; break; } // case 58 case 66: { input.readMessage( getResultsCachePolicyFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000010; break; } // case 66 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int bitField0_; private java.lang.Object instanceName_ = ""; /** *
     * 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. */ public java.lang.String getInstanceName() { java.lang.Object ref = instanceName_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); instanceName_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * 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. */ public com.google.protobuf.ByteString getInstanceNameBytes() { java.lang.Object ref = instanceName_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); instanceName_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * 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; * @param value The instanceName to set. * @return This builder for chaining. */ public Builder setInstanceName( java.lang.String value) { if (value == null) { throw new NullPointerException(); } instanceName_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     * 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 This builder for chaining. */ public Builder clearInstanceName() { instanceName_ = getDefaultInstance().getInstanceName(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
     * 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; * @param value The bytes for instanceName to set. * @return This builder for chaining. */ public Builder setInstanceNameBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); instanceName_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private boolean skipCacheLookup_ ; /** *
     * If true, the action will be executed even if its result is already
     * present in the [ActionCache][build.bazel.remote.execution.v2.ActionCache].
     * The execution is still allowed to be merged with other in-flight executions
     * of the same action, however - semantically, the service MUST only guarantee
     * that the results of an execution with this field set were not visible
     * before the corresponding execution request was sent.
     * Note that actions from execution requests setting this field set are still
     * eligible to be entered into the action cache upon completion, and services
     * SHOULD overwrite any existing entries that may exist. This allows
     * skip_cache_lookup requests to be used as a mechanism for replacing action
     * cache entries that reference outputs no longer available or that are
     * poisoned in any way.
     * If false, the result may be served from the action cache.
     * 
* * bool skip_cache_lookup = 3; * @return The skipCacheLookup. */ @java.lang.Override public boolean getSkipCacheLookup() { return skipCacheLookup_; } /** *
     * If true, the action will be executed even if its result is already
     * present in the [ActionCache][build.bazel.remote.execution.v2.ActionCache].
     * The execution is still allowed to be merged with other in-flight executions
     * of the same action, however - semantically, the service MUST only guarantee
     * that the results of an execution with this field set were not visible
     * before the corresponding execution request was sent.
     * Note that actions from execution requests setting this field set are still
     * eligible to be entered into the action cache upon completion, and services
     * SHOULD overwrite any existing entries that may exist. This allows
     * skip_cache_lookup requests to be used as a mechanism for replacing action
     * cache entries that reference outputs no longer available or that are
     * poisoned in any way.
     * If false, the result may be served from the action cache.
     * 
* * bool skip_cache_lookup = 3; * @param value The skipCacheLookup to set. * @return This builder for chaining. */ public Builder setSkipCacheLookup(boolean value) { skipCacheLookup_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * If true, the action will be executed even if its result is already
     * present in the [ActionCache][build.bazel.remote.execution.v2.ActionCache].
     * The execution is still allowed to be merged with other in-flight executions
     * of the same action, however - semantically, the service MUST only guarantee
     * that the results of an execution with this field set were not visible
     * before the corresponding execution request was sent.
     * Note that actions from execution requests setting this field set are still
     * eligible to be entered into the action cache upon completion, and services
     * SHOULD overwrite any existing entries that may exist. This allows
     * skip_cache_lookup requests to be used as a mechanism for replacing action
     * cache entries that reference outputs no longer available or that are
     * poisoned in any way.
     * If false, the result may be served from the action cache.
     * 
* * bool skip_cache_lookup = 3; * @return This builder for chaining. */ public Builder clearSkipCacheLookup() { bitField0_ = (bitField0_ & ~0x00000002); skipCacheLookup_ = false; onChanged(); return this; } private build.bazel.remote.execution.v2.Digest actionDigest_; private com.google.protobuf.SingleFieldBuilderV3< build.bazel.remote.execution.v2.Digest, build.bazel.remote.execution.v2.Digest.Builder, build.bazel.remote.execution.v2.DigestOrBuilder> actionDigestBuilder_; /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action] to
     * execute.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 6; * @return Whether the actionDigest field is set. */ public boolean hasActionDigest() { return ((bitField0_ & 0x00000004) != 0); } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action] to
     * execute.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 6; * @return The actionDigest. */ public build.bazel.remote.execution.v2.Digest getActionDigest() { if (actionDigestBuilder_ == null) { return actionDigest_ == null ? build.bazel.remote.execution.v2.Digest.getDefaultInstance() : actionDigest_; } else { return actionDigestBuilder_.getMessage(); } } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action] to
     * execute.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 6; */ public Builder setActionDigest(build.bazel.remote.execution.v2.Digest value) { if (actionDigestBuilder_ == null) { if (value == null) { throw new NullPointerException(); } actionDigest_ = value; } else { actionDigestBuilder_.setMessage(value); } bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action] to
     * execute.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 6; */ public Builder setActionDigest( build.bazel.remote.execution.v2.Digest.Builder builderForValue) { if (actionDigestBuilder_ == null) { actionDigest_ = builderForValue.build(); } else { actionDigestBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action] to
     * execute.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 6; */ public Builder mergeActionDigest(build.bazel.remote.execution.v2.Digest value) { if (actionDigestBuilder_ == null) { if (((bitField0_ & 0x00000004) != 0) && actionDigest_ != null && actionDigest_ != build.bazel.remote.execution.v2.Digest.getDefaultInstance()) { getActionDigestBuilder().mergeFrom(value); } else { actionDigest_ = value; } } else { actionDigestBuilder_.mergeFrom(value); } if (actionDigest_ != null) { bitField0_ |= 0x00000004; onChanged(); } return this; } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action] to
     * execute.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 6; */ public Builder clearActionDigest() { bitField0_ = (bitField0_ & ~0x00000004); actionDigest_ = null; if (actionDigestBuilder_ != null) { actionDigestBuilder_.dispose(); actionDigestBuilder_ = null; } onChanged(); return this; } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action] to
     * execute.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 6; */ public build.bazel.remote.execution.v2.Digest.Builder getActionDigestBuilder() { bitField0_ |= 0x00000004; onChanged(); return getActionDigestFieldBuilder().getBuilder(); } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action] to
     * execute.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 6; */ public build.bazel.remote.execution.v2.DigestOrBuilder getActionDigestOrBuilder() { if (actionDigestBuilder_ != null) { return actionDigestBuilder_.getMessageOrBuilder(); } else { return actionDigest_ == null ? build.bazel.remote.execution.v2.Digest.getDefaultInstance() : actionDigest_; } } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action] to
     * execute.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 6; */ private com.google.protobuf.SingleFieldBuilderV3< build.bazel.remote.execution.v2.Digest, build.bazel.remote.execution.v2.Digest.Builder, build.bazel.remote.execution.v2.DigestOrBuilder> getActionDigestFieldBuilder() { if (actionDigestBuilder_ == null) { actionDigestBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< build.bazel.remote.execution.v2.Digest, build.bazel.remote.execution.v2.Digest.Builder, build.bazel.remote.execution.v2.DigestOrBuilder>( getActionDigest(), getParentForChildren(), isClean()); actionDigest_ = null; } return actionDigestBuilder_; } private build.bazel.remote.execution.v2.ExecutionPolicy executionPolicy_; private com.google.protobuf.SingleFieldBuilderV3< build.bazel.remote.execution.v2.ExecutionPolicy, build.bazel.remote.execution.v2.ExecutionPolicy.Builder, build.bazel.remote.execution.v2.ExecutionPolicyOrBuilder> executionPolicyBuilder_; /** *
     * An optional policy for execution of the action.
     * The server will have a default policy if this is not provided.
     * 
* * .build.bazel.remote.execution.v2.ExecutionPolicy execution_policy = 7; * @return Whether the executionPolicy field is set. */ public boolean hasExecutionPolicy() { return ((bitField0_ & 0x00000008) != 0); } /** *
     * An optional policy for execution of the action.
     * The server will have a default policy if this is not provided.
     * 
* * .build.bazel.remote.execution.v2.ExecutionPolicy execution_policy = 7; * @return The executionPolicy. */ public build.bazel.remote.execution.v2.ExecutionPolicy getExecutionPolicy() { if (executionPolicyBuilder_ == null) { return executionPolicy_ == null ? build.bazel.remote.execution.v2.ExecutionPolicy.getDefaultInstance() : executionPolicy_; } else { return executionPolicyBuilder_.getMessage(); } } /** *
     * An optional policy for execution of the action.
     * The server will have a default policy if this is not provided.
     * 
* * .build.bazel.remote.execution.v2.ExecutionPolicy execution_policy = 7; */ public Builder setExecutionPolicy(build.bazel.remote.execution.v2.ExecutionPolicy value) { if (executionPolicyBuilder_ == null) { if (value == null) { throw new NullPointerException(); } executionPolicy_ = value; } else { executionPolicyBuilder_.setMessage(value); } bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     * An optional policy for execution of the action.
     * The server will have a default policy if this is not provided.
     * 
* * .build.bazel.remote.execution.v2.ExecutionPolicy execution_policy = 7; */ public Builder setExecutionPolicy( build.bazel.remote.execution.v2.ExecutionPolicy.Builder builderForValue) { if (executionPolicyBuilder_ == null) { executionPolicy_ = builderForValue.build(); } else { executionPolicyBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     * An optional policy for execution of the action.
     * The server will have a default policy if this is not provided.
     * 
* * .build.bazel.remote.execution.v2.ExecutionPolicy execution_policy = 7; */ public Builder mergeExecutionPolicy(build.bazel.remote.execution.v2.ExecutionPolicy value) { if (executionPolicyBuilder_ == null) { if (((bitField0_ & 0x00000008) != 0) && executionPolicy_ != null && executionPolicy_ != build.bazel.remote.execution.v2.ExecutionPolicy.getDefaultInstance()) { getExecutionPolicyBuilder().mergeFrom(value); } else { executionPolicy_ = value; } } else { executionPolicyBuilder_.mergeFrom(value); } if (executionPolicy_ != null) { bitField0_ |= 0x00000008; onChanged(); } return this; } /** *
     * An optional policy for execution of the action.
     * The server will have a default policy if this is not provided.
     * 
* * .build.bazel.remote.execution.v2.ExecutionPolicy execution_policy = 7; */ public Builder clearExecutionPolicy() { bitField0_ = (bitField0_ & ~0x00000008); executionPolicy_ = null; if (executionPolicyBuilder_ != null) { executionPolicyBuilder_.dispose(); executionPolicyBuilder_ = null; } onChanged(); return this; } /** *
     * An optional policy for execution of the action.
     * The server will have a default policy if this is not provided.
     * 
* * .build.bazel.remote.execution.v2.ExecutionPolicy execution_policy = 7; */ public build.bazel.remote.execution.v2.ExecutionPolicy.Builder getExecutionPolicyBuilder() { bitField0_ |= 0x00000008; onChanged(); return getExecutionPolicyFieldBuilder().getBuilder(); } /** *
     * An optional policy for execution of the action.
     * The server will have a default policy if this is not provided.
     * 
* * .build.bazel.remote.execution.v2.ExecutionPolicy execution_policy = 7; */ public build.bazel.remote.execution.v2.ExecutionPolicyOrBuilder getExecutionPolicyOrBuilder() { if (executionPolicyBuilder_ != null) { return executionPolicyBuilder_.getMessageOrBuilder(); } else { return executionPolicy_ == null ? build.bazel.remote.execution.v2.ExecutionPolicy.getDefaultInstance() : executionPolicy_; } } /** *
     * An optional policy for execution of the action.
     * The server will have a default policy if this is not provided.
     * 
* * .build.bazel.remote.execution.v2.ExecutionPolicy execution_policy = 7; */ private com.google.protobuf.SingleFieldBuilderV3< build.bazel.remote.execution.v2.ExecutionPolicy, build.bazel.remote.execution.v2.ExecutionPolicy.Builder, build.bazel.remote.execution.v2.ExecutionPolicyOrBuilder> getExecutionPolicyFieldBuilder() { if (executionPolicyBuilder_ == null) { executionPolicyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< build.bazel.remote.execution.v2.ExecutionPolicy, build.bazel.remote.execution.v2.ExecutionPolicy.Builder, build.bazel.remote.execution.v2.ExecutionPolicyOrBuilder>( getExecutionPolicy(), getParentForChildren(), isClean()); executionPolicy_ = null; } return executionPolicyBuilder_; } private build.bazel.remote.execution.v2.ResultsCachePolicy resultsCachePolicy_; private com.google.protobuf.SingleFieldBuilderV3< build.bazel.remote.execution.v2.ResultsCachePolicy, build.bazel.remote.execution.v2.ResultsCachePolicy.Builder, build.bazel.remote.execution.v2.ResultsCachePolicyOrBuilder> resultsCachePolicyBuilder_; /** *
     * 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 = 8; * @return Whether the resultsCachePolicy field is set. */ public boolean hasResultsCachePolicy() { return ((bitField0_ & 0x00000010) != 0); } /** *
     * 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 = 8; * @return The resultsCachePolicy. */ public build.bazel.remote.execution.v2.ResultsCachePolicy getResultsCachePolicy() { if (resultsCachePolicyBuilder_ == null) { return resultsCachePolicy_ == null ? build.bazel.remote.execution.v2.ResultsCachePolicy.getDefaultInstance() : resultsCachePolicy_; } else { return resultsCachePolicyBuilder_.getMessage(); } } /** *
     * 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 = 8; */ public Builder setResultsCachePolicy(build.bazel.remote.execution.v2.ResultsCachePolicy value) { if (resultsCachePolicyBuilder_ == null) { if (value == null) { throw new NullPointerException(); } resultsCachePolicy_ = value; } else { resultsCachePolicyBuilder_.setMessage(value); } bitField0_ |= 0x00000010; onChanged(); return this; } /** *
     * 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 = 8; */ public Builder setResultsCachePolicy( build.bazel.remote.execution.v2.ResultsCachePolicy.Builder builderForValue) { if (resultsCachePolicyBuilder_ == null) { resultsCachePolicy_ = builderForValue.build(); } else { resultsCachePolicyBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000010; onChanged(); return this; } /** *
     * 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 = 8; */ public Builder mergeResultsCachePolicy(build.bazel.remote.execution.v2.ResultsCachePolicy value) { if (resultsCachePolicyBuilder_ == null) { if (((bitField0_ & 0x00000010) != 0) && resultsCachePolicy_ != null && resultsCachePolicy_ != build.bazel.remote.execution.v2.ResultsCachePolicy.getDefaultInstance()) { getResultsCachePolicyBuilder().mergeFrom(value); } else { resultsCachePolicy_ = value; } } else { resultsCachePolicyBuilder_.mergeFrom(value); } if (resultsCachePolicy_ != null) { bitField0_ |= 0x00000010; onChanged(); } return this; } /** *
     * 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 = 8; */ public Builder clearResultsCachePolicy() { bitField0_ = (bitField0_ & ~0x00000010); resultsCachePolicy_ = null; if (resultsCachePolicyBuilder_ != null) { resultsCachePolicyBuilder_.dispose(); resultsCachePolicyBuilder_ = null; } onChanged(); return this; } /** *
     * 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 = 8; */ public build.bazel.remote.execution.v2.ResultsCachePolicy.Builder getResultsCachePolicyBuilder() { bitField0_ |= 0x00000010; onChanged(); return getResultsCachePolicyFieldBuilder().getBuilder(); } /** *
     * 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 = 8; */ public build.bazel.remote.execution.v2.ResultsCachePolicyOrBuilder getResultsCachePolicyOrBuilder() { if (resultsCachePolicyBuilder_ != null) { return resultsCachePolicyBuilder_.getMessageOrBuilder(); } else { return resultsCachePolicy_ == null ? build.bazel.remote.execution.v2.ResultsCachePolicy.getDefaultInstance() : resultsCachePolicy_; } } /** *
     * 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 = 8; */ private com.google.protobuf.SingleFieldBuilderV3< build.bazel.remote.execution.v2.ResultsCachePolicy, build.bazel.remote.execution.v2.ResultsCachePolicy.Builder, build.bazel.remote.execution.v2.ResultsCachePolicyOrBuilder> getResultsCachePolicyFieldBuilder() { if (resultsCachePolicyBuilder_ == null) { resultsCachePolicyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< build.bazel.remote.execution.v2.ResultsCachePolicy, build.bazel.remote.execution.v2.ResultsCachePolicy.Builder, build.bazel.remote.execution.v2.ResultsCachePolicyOrBuilder>( getResultsCachePolicy(), getParentForChildren(), isClean()); resultsCachePolicy_ = null; } return resultsCachePolicyBuilder_; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:build.bazel.remote.execution.v2.ExecuteRequest) } // @@protoc_insertion_point(class_scope:build.bazel.remote.execution.v2.ExecuteRequest) private static final build.bazel.remote.execution.v2.ExecuteRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new build.bazel.remote.execution.v2.ExecuteRequest(); } public static build.bazel.remote.execution.v2.ExecuteRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public ExecuteRequest parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public build.bazel.remote.execution.v2.ExecuteRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy