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

build.bazel.remote.execution.v2.GetActionResultRequest 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
 * [ActionCache.GetActionResult][build.bazel.remote.execution.v2.ActionCache.GetActionResult].
 * 
* * Protobuf type {@code build.bazel.remote.execution.v2.GetActionResultRequest} */ public final class GetActionResultRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:build.bazel.remote.execution.v2.GetActionResultRequest) GetActionResultRequestOrBuilder { private static final long serialVersionUID = 0L; // Use GetActionResultRequest.newBuilder() to construct. private GetActionResultRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private GetActionResultRequest() { instanceName_ = ""; inlineOutputFiles_ = com.google.protobuf.LazyStringArrayList.emptyList(); } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new GetActionResultRequest(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_GetActionResultRequest_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_GetActionResultRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( build.bazel.remote.execution.v2.GetActionResultRequest.class, build.bazel.remote.execution.v2.GetActionResultRequest.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 ACTION_DIGEST_FIELD_NUMBER = 2; private build.bazel.remote.execution.v2.Digest actionDigest_; /** *
   * The digest of the [Action][build.bazel.remote.execution.v2.Action]
   * whose result is requested.
   * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 2; * @return Whether the actionDigest field is set. */ @java.lang.Override public boolean hasActionDigest() { return ((bitField0_ & 0x00000001) != 0); } /** *
   * The digest of the [Action][build.bazel.remote.execution.v2.Action]
   * whose result is requested.
   * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 2; * @return The actionDigest. */ @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]
   * whose result is requested.
   * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 2; */ @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 INLINE_STDOUT_FIELD_NUMBER = 3; private boolean inlineStdout_ = false; /** *
   * A hint to the server to request inlining stdout in the
   * [ActionResult][build.bazel.remote.execution.v2.ActionResult] message.
   * 
* * bool inline_stdout = 3; * @return The inlineStdout. */ @java.lang.Override public boolean getInlineStdout() { return inlineStdout_; } public static final int INLINE_STDERR_FIELD_NUMBER = 4; private boolean inlineStderr_ = false; /** *
   * A hint to the server to request inlining stderr in the
   * [ActionResult][build.bazel.remote.execution.v2.ActionResult] message.
   * 
* * bool inline_stderr = 4; * @return The inlineStderr. */ @java.lang.Override public boolean getInlineStderr() { return inlineStderr_; } public static final int INLINE_OUTPUT_FILES_FIELD_NUMBER = 5; @SuppressWarnings("serial") private com.google.protobuf.LazyStringArrayList inlineOutputFiles_ = com.google.protobuf.LazyStringArrayList.emptyList(); /** *
   * A hint to the server to inline the contents of the listed output files.
   * Each path needs to exactly match one file path in either `output_paths` or
   * `output_files` (DEPRECATED since v2.1) in the
   * [Command][build.bazel.remote.execution.v2.Command] message.
   * 
* * repeated string inline_output_files = 5; * @return A list containing the inlineOutputFiles. */ public com.google.protobuf.ProtocolStringList getInlineOutputFilesList() { return inlineOutputFiles_; } /** *
   * A hint to the server to inline the contents of the listed output files.
   * Each path needs to exactly match one file path in either `output_paths` or
   * `output_files` (DEPRECATED since v2.1) in the
   * [Command][build.bazel.remote.execution.v2.Command] message.
   * 
* * repeated string inline_output_files = 5; * @return The count of inlineOutputFiles. */ public int getInlineOutputFilesCount() { return inlineOutputFiles_.size(); } /** *
   * A hint to the server to inline the contents of the listed output files.
   * Each path needs to exactly match one file path in either `output_paths` or
   * `output_files` (DEPRECATED since v2.1) in the
   * [Command][build.bazel.remote.execution.v2.Command] message.
   * 
* * repeated string inline_output_files = 5; * @param index The index of the element to return. * @return The inlineOutputFiles at the given index. */ public java.lang.String getInlineOutputFiles(int index) { return inlineOutputFiles_.get(index); } /** *
   * A hint to the server to inline the contents of the listed output files.
   * Each path needs to exactly match one file path in either `output_paths` or
   * `output_files` (DEPRECATED since v2.1) in the
   * [Command][build.bazel.remote.execution.v2.Command] message.
   * 
* * repeated string inline_output_files = 5; * @param index The index of the value to return. * @return The bytes of the inlineOutputFiles at the given index. */ public com.google.protobuf.ByteString getInlineOutputFilesBytes(int index) { return inlineOutputFiles_.getByteString(index); } 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 (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(2, getActionDigest()); } if (inlineStdout_ != false) { output.writeBool(3, inlineStdout_); } if (inlineStderr_ != false) { output.writeBool(4, inlineStderr_); } for (int i = 0; i < inlineOutputFiles_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 5, inlineOutputFiles_.getRaw(i)); } 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 (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getActionDigest()); } if (inlineStdout_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(3, inlineStdout_); } if (inlineStderr_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(4, inlineStderr_); } { int dataSize = 0; for (int i = 0; i < inlineOutputFiles_.size(); i++) { dataSize += computeStringSizeNoTag(inlineOutputFiles_.getRaw(i)); } size += dataSize; size += 1 * getInlineOutputFilesList().size(); } 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.GetActionResultRequest)) { return super.equals(obj); } build.bazel.remote.execution.v2.GetActionResultRequest other = (build.bazel.remote.execution.v2.GetActionResultRequest) obj; if (!getInstanceName() .equals(other.getInstanceName())) return false; if (hasActionDigest() != other.hasActionDigest()) return false; if (hasActionDigest()) { if (!getActionDigest() .equals(other.getActionDigest())) return false; } if (getInlineStdout() != other.getInlineStdout()) return false; if (getInlineStderr() != other.getInlineStderr()) return false; if (!getInlineOutputFilesList() .equals(other.getInlineOutputFilesList())) 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(); if (hasActionDigest()) { hash = (37 * hash) + ACTION_DIGEST_FIELD_NUMBER; hash = (53 * hash) + getActionDigest().hashCode(); } hash = (37 * hash) + INLINE_STDOUT_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getInlineStdout()); hash = (37 * hash) + INLINE_STDERR_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getInlineStderr()); if (getInlineOutputFilesCount() > 0) { hash = (37 * hash) + INLINE_OUTPUT_FILES_FIELD_NUMBER; hash = (53 * hash) + getInlineOutputFilesList().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static build.bazel.remote.execution.v2.GetActionResultRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static build.bazel.remote.execution.v2.GetActionResultRequest 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.GetActionResultRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static build.bazel.remote.execution.v2.GetActionResultRequest 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.GetActionResultRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static build.bazel.remote.execution.v2.GetActionResultRequest 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.GetActionResultRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static build.bazel.remote.execution.v2.GetActionResultRequest 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.GetActionResultRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static build.bazel.remote.execution.v2.GetActionResultRequest 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.GetActionResultRequest 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.GetActionResultRequest 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.GetActionResultRequest 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
   * [ActionCache.GetActionResult][build.bazel.remote.execution.v2.ActionCache.GetActionResult].
   * 
* * Protobuf type {@code build.bazel.remote.execution.v2.GetActionResultRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:build.bazel.remote.execution.v2.GetActionResultRequest) build.bazel.remote.execution.v2.GetActionResultRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_GetActionResultRequest_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_GetActionResultRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( build.bazel.remote.execution.v2.GetActionResultRequest.class, build.bazel.remote.execution.v2.GetActionResultRequest.Builder.class); } // Construct using build.bazel.remote.execution.v2.GetActionResultRequest.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(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; instanceName_ = ""; actionDigest_ = null; if (actionDigestBuilder_ != null) { actionDigestBuilder_.dispose(); actionDigestBuilder_ = null; } inlineStdout_ = false; inlineStderr_ = false; inlineOutputFiles_ = com.google.protobuf.LazyStringArrayList.emptyList(); 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_GetActionResultRequest_descriptor; } @java.lang.Override public build.bazel.remote.execution.v2.GetActionResultRequest getDefaultInstanceForType() { return build.bazel.remote.execution.v2.GetActionResultRequest.getDefaultInstance(); } @java.lang.Override public build.bazel.remote.execution.v2.GetActionResultRequest build() { build.bazel.remote.execution.v2.GetActionResultRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public build.bazel.remote.execution.v2.GetActionResultRequest buildPartial() { build.bazel.remote.execution.v2.GetActionResultRequest result = new build.bazel.remote.execution.v2.GetActionResultRequest(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(build.bazel.remote.execution.v2.GetActionResultRequest result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.instanceName_ = instanceName_; } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000002) != 0)) { result.actionDigest_ = actionDigestBuilder_ == null ? actionDigest_ : actionDigestBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000004) != 0)) { result.inlineStdout_ = inlineStdout_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.inlineStderr_ = inlineStderr_; } if (((from_bitField0_ & 0x00000010) != 0)) { inlineOutputFiles_.makeImmutable(); result.inlineOutputFiles_ = inlineOutputFiles_; } 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.GetActionResultRequest) { return mergeFrom((build.bazel.remote.execution.v2.GetActionResultRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(build.bazel.remote.execution.v2.GetActionResultRequest other) { if (other == build.bazel.remote.execution.v2.GetActionResultRequest.getDefaultInstance()) return this; if (!other.getInstanceName().isEmpty()) { instanceName_ = other.instanceName_; bitField0_ |= 0x00000001; onChanged(); } if (other.hasActionDigest()) { mergeActionDigest(other.getActionDigest()); } if (other.getInlineStdout() != false) { setInlineStdout(other.getInlineStdout()); } if (other.getInlineStderr() != false) { setInlineStderr(other.getInlineStderr()); } if (!other.inlineOutputFiles_.isEmpty()) { if (inlineOutputFiles_.isEmpty()) { inlineOutputFiles_ = other.inlineOutputFiles_; bitField0_ |= 0x00000010; } else { ensureInlineOutputFilesIsMutable(); inlineOutputFiles_.addAll(other.inlineOutputFiles_); } onChanged(); } 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 18: { input.readMessage( getActionDigestFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000002; break; } // case 18 case 24: { inlineStdout_ = input.readBool(); bitField0_ |= 0x00000004; break; } // case 24 case 32: { inlineStderr_ = input.readBool(); bitField0_ |= 0x00000008; break; } // case 32 case 42: { java.lang.String s = input.readStringRequireUtf8(); ensureInlineOutputFilesIsMutable(); inlineOutputFiles_.add(s); break; } // case 42 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 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]
     * whose result is requested.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 2; * @return Whether the actionDigest field is set. */ public boolean hasActionDigest() { return ((bitField0_ & 0x00000002) != 0); } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action]
     * whose result is requested.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 2; * @return The actionDigest. */ 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]
     * whose result is requested.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 2; */ 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_ |= 0x00000002; onChanged(); return this; } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action]
     * whose result is requested.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 2; */ public Builder setActionDigest( build.bazel.remote.execution.v2.Digest.Builder builderForValue) { if (actionDigestBuilder_ == null) { actionDigest_ = builderForValue.build(); } else { actionDigestBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action]
     * whose result is requested.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 2; */ public Builder mergeActionDigest(build.bazel.remote.execution.v2.Digest value) { if (actionDigestBuilder_ == null) { if (((bitField0_ & 0x00000002) != 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_ |= 0x00000002; onChanged(); } return this; } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action]
     * whose result is requested.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 2; */ public Builder clearActionDigest() { bitField0_ = (bitField0_ & ~0x00000002); actionDigest_ = null; if (actionDigestBuilder_ != null) { actionDigestBuilder_.dispose(); actionDigestBuilder_ = null; } onChanged(); return this; } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action]
     * whose result is requested.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 2; */ public build.bazel.remote.execution.v2.Digest.Builder getActionDigestBuilder() { bitField0_ |= 0x00000002; onChanged(); return getActionDigestFieldBuilder().getBuilder(); } /** *
     * The digest of the [Action][build.bazel.remote.execution.v2.Action]
     * whose result is requested.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 2; */ 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]
     * whose result is requested.
     * 
* * .build.bazel.remote.execution.v2.Digest action_digest = 2; */ 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 boolean inlineStdout_ ; /** *
     * A hint to the server to request inlining stdout in the
     * [ActionResult][build.bazel.remote.execution.v2.ActionResult] message.
     * 
* * bool inline_stdout = 3; * @return The inlineStdout. */ @java.lang.Override public boolean getInlineStdout() { return inlineStdout_; } /** *
     * A hint to the server to request inlining stdout in the
     * [ActionResult][build.bazel.remote.execution.v2.ActionResult] message.
     * 
* * bool inline_stdout = 3; * @param value The inlineStdout to set. * @return This builder for chaining. */ public Builder setInlineStdout(boolean value) { inlineStdout_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     * A hint to the server to request inlining stdout in the
     * [ActionResult][build.bazel.remote.execution.v2.ActionResult] message.
     * 
* * bool inline_stdout = 3; * @return This builder for chaining. */ public Builder clearInlineStdout() { bitField0_ = (bitField0_ & ~0x00000004); inlineStdout_ = false; onChanged(); return this; } private boolean inlineStderr_ ; /** *
     * A hint to the server to request inlining stderr in the
     * [ActionResult][build.bazel.remote.execution.v2.ActionResult] message.
     * 
* * bool inline_stderr = 4; * @return The inlineStderr. */ @java.lang.Override public boolean getInlineStderr() { return inlineStderr_; } /** *
     * A hint to the server to request inlining stderr in the
     * [ActionResult][build.bazel.remote.execution.v2.ActionResult] message.
     * 
* * bool inline_stderr = 4; * @param value The inlineStderr to set. * @return This builder for chaining. */ public Builder setInlineStderr(boolean value) { inlineStderr_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     * A hint to the server to request inlining stderr in the
     * [ActionResult][build.bazel.remote.execution.v2.ActionResult] message.
     * 
* * bool inline_stderr = 4; * @return This builder for chaining. */ public Builder clearInlineStderr() { bitField0_ = (bitField0_ & ~0x00000008); inlineStderr_ = false; onChanged(); return this; } private com.google.protobuf.LazyStringArrayList inlineOutputFiles_ = com.google.protobuf.LazyStringArrayList.emptyList(); private void ensureInlineOutputFilesIsMutable() { if (!inlineOutputFiles_.isModifiable()) { inlineOutputFiles_ = new com.google.protobuf.LazyStringArrayList(inlineOutputFiles_); } bitField0_ |= 0x00000010; } /** *
     * A hint to the server to inline the contents of the listed output files.
     * Each path needs to exactly match one file path in either `output_paths` or
     * `output_files` (DEPRECATED since v2.1) in the
     * [Command][build.bazel.remote.execution.v2.Command] message.
     * 
* * repeated string inline_output_files = 5; * @return A list containing the inlineOutputFiles. */ public com.google.protobuf.ProtocolStringList getInlineOutputFilesList() { inlineOutputFiles_.makeImmutable(); return inlineOutputFiles_; } /** *
     * A hint to the server to inline the contents of the listed output files.
     * Each path needs to exactly match one file path in either `output_paths` or
     * `output_files` (DEPRECATED since v2.1) in the
     * [Command][build.bazel.remote.execution.v2.Command] message.
     * 
* * repeated string inline_output_files = 5; * @return The count of inlineOutputFiles. */ public int getInlineOutputFilesCount() { return inlineOutputFiles_.size(); } /** *
     * A hint to the server to inline the contents of the listed output files.
     * Each path needs to exactly match one file path in either `output_paths` or
     * `output_files` (DEPRECATED since v2.1) in the
     * [Command][build.bazel.remote.execution.v2.Command] message.
     * 
* * repeated string inline_output_files = 5; * @param index The index of the element to return. * @return The inlineOutputFiles at the given index. */ public java.lang.String getInlineOutputFiles(int index) { return inlineOutputFiles_.get(index); } /** *
     * A hint to the server to inline the contents of the listed output files.
     * Each path needs to exactly match one file path in either `output_paths` or
     * `output_files` (DEPRECATED since v2.1) in the
     * [Command][build.bazel.remote.execution.v2.Command] message.
     * 
* * repeated string inline_output_files = 5; * @param index The index of the value to return. * @return The bytes of the inlineOutputFiles at the given index. */ public com.google.protobuf.ByteString getInlineOutputFilesBytes(int index) { return inlineOutputFiles_.getByteString(index); } /** *
     * A hint to the server to inline the contents of the listed output files.
     * Each path needs to exactly match one file path in either `output_paths` or
     * `output_files` (DEPRECATED since v2.1) in the
     * [Command][build.bazel.remote.execution.v2.Command] message.
     * 
* * repeated string inline_output_files = 5; * @param index The index to set the value at. * @param value The inlineOutputFiles to set. * @return This builder for chaining. */ public Builder setInlineOutputFiles( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureInlineOutputFilesIsMutable(); inlineOutputFiles_.set(index, value); bitField0_ |= 0x00000010; onChanged(); return this; } /** *
     * A hint to the server to inline the contents of the listed output files.
     * Each path needs to exactly match one file path in either `output_paths` or
     * `output_files` (DEPRECATED since v2.1) in the
     * [Command][build.bazel.remote.execution.v2.Command] message.
     * 
* * repeated string inline_output_files = 5; * @param value The inlineOutputFiles to add. * @return This builder for chaining. */ public Builder addInlineOutputFiles( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureInlineOutputFilesIsMutable(); inlineOutputFiles_.add(value); bitField0_ |= 0x00000010; onChanged(); return this; } /** *
     * A hint to the server to inline the contents of the listed output files.
     * Each path needs to exactly match one file path in either `output_paths` or
     * `output_files` (DEPRECATED since v2.1) in the
     * [Command][build.bazel.remote.execution.v2.Command] message.
     * 
* * repeated string inline_output_files = 5; * @param values The inlineOutputFiles to add. * @return This builder for chaining. */ public Builder addAllInlineOutputFiles( java.lang.Iterable values) { ensureInlineOutputFilesIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, inlineOutputFiles_); bitField0_ |= 0x00000010; onChanged(); return this; } /** *
     * A hint to the server to inline the contents of the listed output files.
     * Each path needs to exactly match one file path in either `output_paths` or
     * `output_files` (DEPRECATED since v2.1) in the
     * [Command][build.bazel.remote.execution.v2.Command] message.
     * 
* * repeated string inline_output_files = 5; * @return This builder for chaining. */ public Builder clearInlineOutputFiles() { inlineOutputFiles_ = com.google.protobuf.LazyStringArrayList.emptyList(); bitField0_ = (bitField0_ & ~0x00000010);; onChanged(); return this; } /** *
     * A hint to the server to inline the contents of the listed output files.
     * Each path needs to exactly match one file path in either `output_paths` or
     * `output_files` (DEPRECATED since v2.1) in the
     * [Command][build.bazel.remote.execution.v2.Command] message.
     * 
* * repeated string inline_output_files = 5; * @param value The bytes of the inlineOutputFiles to add. * @return This builder for chaining. */ public Builder addInlineOutputFilesBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureInlineOutputFilesIsMutable(); inlineOutputFiles_.add(value); bitField0_ |= 0x00000010; onChanged(); return this; } @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.GetActionResultRequest) } // @@protoc_insertion_point(class_scope:build.bazel.remote.execution.v2.GetActionResultRequest) private static final build.bazel.remote.execution.v2.GetActionResultRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new build.bazel.remote.execution.v2.GetActionResultRequest(); } public static build.bazel.remote.execution.v2.GetActionResultRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public GetActionResultRequest 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.GetActionResultRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy