com.clarifai.grpc.api.PostRunnerItemOutputsRequest Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/service.proto
package com.clarifai.grpc.api;
/**
*
* PostRunnerItemOutputsRequest
* This is the message that runners send to the API to communicate.
* At the end of the request it will have the RunnerItemOutput filled in
* with results of the workload the runner is processing. Other messages
* from the runner use this same proto to communicate over to the API
* and do handshakes.
*
*
* Protobuf type {@code clarifai.api.PostRunnerItemOutputsRequest}
*/
public final class PostRunnerItemOutputsRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:clarifai.api.PostRunnerItemOutputsRequest)
PostRunnerItemOutputsRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use PostRunnerItemOutputsRequest.newBuilder() to construct.
private PostRunnerItemOutputsRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private PostRunnerItemOutputsRequest() {
nodepoolId_ = "";
runnerId_ = "";
runnerItemId_ = "";
runnerItemOutputs_ = java.util.Collections.emptyList();
runnerReplicaId_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new PostRunnerItemOutputsRequest();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PostRunnerItemOutputsRequest(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
com.clarifai.grpc.api.UserAppIDSet.Builder subBuilder = null;
if (userAppId_ != null) {
subBuilder = userAppId_.toBuilder();
}
userAppId_ = input.readMessage(com.clarifai.grpc.api.UserAppIDSet.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(userAppId_);
userAppId_ = subBuilder.buildPartial();
}
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
nodepoolId_ = s;
break;
}
case 26: {
java.lang.String s = input.readStringRequireUtf8();
runnerId_ = s;
break;
}
case 34: {
java.lang.String s = input.readStringRequireUtf8();
runnerItemId_ = s;
break;
}
case 42: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
runnerItemOutputs_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
runnerItemOutputs_.add(
input.readMessage(com.clarifai.grpc.api.RunnerItemOutput.parser(), extensionRegistry));
break;
}
case 50: {
com.clarifai.grpc.api.status.Status.Builder subBuilder = null;
if (status_ != null) {
subBuilder = status_.toBuilder();
}
status_ = input.readMessage(com.clarifai.grpc.api.status.Status.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(status_);
status_ = subBuilder.buildPartial();
}
break;
}
case 58: {
java.lang.String s = input.readStringRequireUtf8();
runnerReplicaId_ = s;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
runnerItemOutputs_ = java.util.Collections.unmodifiableList(runnerItemOutputs_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.clarifai.grpc.api.Service.internal_static_clarifai_api_PostRunnerItemOutputsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.clarifai.grpc.api.Service.internal_static_clarifai_api_PostRunnerItemOutputsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.clarifai.grpc.api.PostRunnerItemOutputsRequest.class, com.clarifai.grpc.api.PostRunnerItemOutputsRequest.Builder.class);
}
public static final int USER_APP_ID_FIELD_NUMBER = 1;
private com.clarifai.grpc.api.UserAppIDSet userAppId_;
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return Whether the userAppId field is set.
*/
@java.lang.Override
public boolean hasUserAppId() {
return userAppId_ != null;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return The userAppId.
*/
@java.lang.Override
public com.clarifai.grpc.api.UserAppIDSet getUserAppId() {
return userAppId_ == null ? com.clarifai.grpc.api.UserAppIDSet.getDefaultInstance() : userAppId_;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
@java.lang.Override
public com.clarifai.grpc.api.UserAppIDSetOrBuilder getUserAppIdOrBuilder() {
return getUserAppId();
}
public static final int NODEPOOL_ID_FIELD_NUMBER = 2;
private volatile java.lang.Object nodepoolId_;
/**
*
* The particular nodepool that runner belongs to
*
*
* string nodepool_id = 2;
* @return The nodepoolId.
*/
@java.lang.Override
public java.lang.String getNodepoolId() {
java.lang.Object ref = nodepoolId_;
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();
nodepoolId_ = s;
return s;
}
}
/**
*
* The particular nodepool that runner belongs to
*
*
* string nodepool_id = 2;
* @return The bytes for nodepoolId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getNodepoolIdBytes() {
java.lang.Object ref = nodepoolId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
nodepoolId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int RUNNER_ID_FIELD_NUMBER = 3;
private volatile java.lang.Object runnerId_;
/**
*
* The particular runner that processed the work.
*
*
* string runner_id = 3;
* @return The runnerId.
*/
@java.lang.Override
public java.lang.String getRunnerId() {
java.lang.Object ref = runnerId_;
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();
runnerId_ = s;
return s;
}
}
/**
*
* The particular runner that processed the work.
*
*
* string runner_id = 3;
* @return The bytes for runnerId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getRunnerIdBytes() {
java.lang.Object ref = runnerId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
runnerId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int RUNNER_ITEM_ID_FIELD_NUMBER = 4;
private volatile java.lang.Object runnerItemId_;
/**
*
* The particular item of work processed.
*
*
* string runner_item_id = 4;
* @return The runnerItemId.
*/
@java.lang.Override
public java.lang.String getRunnerItemId() {
java.lang.Object ref = runnerItemId_;
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();
runnerItemId_ = s;
return s;
}
}
/**
*
* The particular item of work processed.
*
*
* string runner_item_id = 4;
* @return The bytes for runnerItemId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getRunnerItemIdBytes() {
java.lang.Object ref = runnerItemId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
runnerItemId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int RUNNER_ITEM_OUTPUTS_FIELD_NUMBER = 5;
private java.util.List runnerItemOutputs_;
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
@java.lang.Override
public java.util.List getRunnerItemOutputsList() {
return runnerItemOutputs_;
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
@java.lang.Override
public java.util.List extends com.clarifai.grpc.api.RunnerItemOutputOrBuilder>
getRunnerItemOutputsOrBuilderList() {
return runnerItemOutputs_;
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
@java.lang.Override
public int getRunnerItemOutputsCount() {
return runnerItemOutputs_.size();
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
@java.lang.Override
public com.clarifai.grpc.api.RunnerItemOutput getRunnerItemOutputs(int index) {
return runnerItemOutputs_.get(index);
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
@java.lang.Override
public com.clarifai.grpc.api.RunnerItemOutputOrBuilder getRunnerItemOutputsOrBuilder(
int index) {
return runnerItemOutputs_.get(index);
}
public static final int STATUS_FIELD_NUMBER = 6;
private com.clarifai.grpc.api.status.Status status_;
/**
*
* This request has a status so that it can communicate to the API from runners and
* communicate status, errors, etc. This is on the request since runners operate
* in a reverse protocol. This status is also used to initiate the
* ProcessRunnerItems request with RUNNER_STREAM_START code.
*
*
* .clarifai.api.status.Status status = 6;
* @return Whether the status field is set.
*/
@java.lang.Override
public boolean hasStatus() {
return status_ != null;
}
/**
*
* This request has a status so that it can communicate to the API from runners and
* communicate status, errors, etc. This is on the request since runners operate
* in a reverse protocol. This status is also used to initiate the
* ProcessRunnerItems request with RUNNER_STREAM_START code.
*
*
* .clarifai.api.status.Status status = 6;
* @return The status.
*/
@java.lang.Override
public com.clarifai.grpc.api.status.Status getStatus() {
return status_ == null ? com.clarifai.grpc.api.status.Status.getDefaultInstance() : status_;
}
/**
*
* This request has a status so that it can communicate to the API from runners and
* communicate status, errors, etc. This is on the request since runners operate
* in a reverse protocol. This status is also used to initiate the
* ProcessRunnerItems request with RUNNER_STREAM_START code.
*
*
* .clarifai.api.status.Status status = 6;
*/
@java.lang.Override
public com.clarifai.grpc.api.status.StatusOrBuilder getStatusOrBuilder() {
return getStatus();
}
public static final int RUNNER_REPLICA_ID_FIELD_NUMBER = 7;
private volatile java.lang.Object runnerReplicaId_;
/**
*
* A unique ID to represent the runner. This may be tied to an underlying compute instance
* information or just an UUID.
*
*
* string runner_replica_id = 7;
* @return The runnerReplicaId.
*/
@java.lang.Override
public java.lang.String getRunnerReplicaId() {
java.lang.Object ref = runnerReplicaId_;
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();
runnerReplicaId_ = s;
return s;
}
}
/**
*
* A unique ID to represent the runner. This may be tied to an underlying compute instance
* information or just an UUID.
*
*
* string runner_replica_id = 7;
* @return The bytes for runnerReplicaId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getRunnerReplicaIdBytes() {
java.lang.Object ref = runnerReplicaId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
runnerReplicaId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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 (userAppId_ != null) {
output.writeMessage(1, getUserAppId());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nodepoolId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, nodepoolId_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(runnerId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, runnerId_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(runnerItemId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, runnerItemId_);
}
for (int i = 0; i < runnerItemOutputs_.size(); i++) {
output.writeMessage(5, runnerItemOutputs_.get(i));
}
if (status_ != null) {
output.writeMessage(6, getStatus());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(runnerReplicaId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 7, runnerReplicaId_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (userAppId_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getUserAppId());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(nodepoolId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, nodepoolId_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(runnerId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, runnerId_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(runnerItemId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, runnerItemId_);
}
for (int i = 0; i < runnerItemOutputs_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(5, runnerItemOutputs_.get(i));
}
if (status_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(6, getStatus());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(runnerReplicaId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, runnerReplicaId_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.clarifai.grpc.api.PostRunnerItemOutputsRequest)) {
return super.equals(obj);
}
com.clarifai.grpc.api.PostRunnerItemOutputsRequest other = (com.clarifai.grpc.api.PostRunnerItemOutputsRequest) obj;
if (hasUserAppId() != other.hasUserAppId()) return false;
if (hasUserAppId()) {
if (!getUserAppId()
.equals(other.getUserAppId())) return false;
}
if (!getNodepoolId()
.equals(other.getNodepoolId())) return false;
if (!getRunnerId()
.equals(other.getRunnerId())) return false;
if (!getRunnerItemId()
.equals(other.getRunnerItemId())) return false;
if (!getRunnerItemOutputsList()
.equals(other.getRunnerItemOutputsList())) return false;
if (hasStatus() != other.hasStatus()) return false;
if (hasStatus()) {
if (!getStatus()
.equals(other.getStatus())) return false;
}
if (!getRunnerReplicaId()
.equals(other.getRunnerReplicaId())) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasUserAppId()) {
hash = (37 * hash) + USER_APP_ID_FIELD_NUMBER;
hash = (53 * hash) + getUserAppId().hashCode();
}
hash = (37 * hash) + NODEPOOL_ID_FIELD_NUMBER;
hash = (53 * hash) + getNodepoolId().hashCode();
hash = (37 * hash) + RUNNER_ID_FIELD_NUMBER;
hash = (53 * hash) + getRunnerId().hashCode();
hash = (37 * hash) + RUNNER_ITEM_ID_FIELD_NUMBER;
hash = (53 * hash) + getRunnerItemId().hashCode();
if (getRunnerItemOutputsCount() > 0) {
hash = (37 * hash) + RUNNER_ITEM_OUTPUTS_FIELD_NUMBER;
hash = (53 * hash) + getRunnerItemOutputsList().hashCode();
}
if (hasStatus()) {
hash = (37 * hash) + STATUS_FIELD_NUMBER;
hash = (53 * hash) + getStatus().hashCode();
}
hash = (37 * hash) + RUNNER_REPLICA_ID_FIELD_NUMBER;
hash = (53 * hash) + getRunnerReplicaId().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.clarifai.grpc.api.PostRunnerItemOutputsRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clarifai.grpc.api.PostRunnerItemOutputsRequest parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.clarifai.grpc.api.PostRunnerItemOutputsRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clarifai.grpc.api.PostRunnerItemOutputsRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.clarifai.grpc.api.PostRunnerItemOutputsRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clarifai.grpc.api.PostRunnerItemOutputsRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.clarifai.grpc.api.PostRunnerItemOutputsRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.clarifai.grpc.api.PostRunnerItemOutputsRequest 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 com.clarifai.grpc.api.PostRunnerItemOutputsRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.clarifai.grpc.api.PostRunnerItemOutputsRequest 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 com.clarifai.grpc.api.PostRunnerItemOutputsRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.clarifai.grpc.api.PostRunnerItemOutputsRequest 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(com.clarifai.grpc.api.PostRunnerItemOutputsRequest 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;
}
/**
*
* PostRunnerItemOutputsRequest
* This is the message that runners send to the API to communicate.
* At the end of the request it will have the RunnerItemOutput filled in
* with results of the workload the runner is processing. Other messages
* from the runner use this same proto to communicate over to the API
* and do handshakes.
*
*
* Protobuf type {@code clarifai.api.PostRunnerItemOutputsRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:clarifai.api.PostRunnerItemOutputsRequest)
com.clarifai.grpc.api.PostRunnerItemOutputsRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.clarifai.grpc.api.Service.internal_static_clarifai_api_PostRunnerItemOutputsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.clarifai.grpc.api.Service.internal_static_clarifai_api_PostRunnerItemOutputsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.clarifai.grpc.api.PostRunnerItemOutputsRequest.class, com.clarifai.grpc.api.PostRunnerItemOutputsRequest.Builder.class);
}
// Construct using com.clarifai.grpc.api.PostRunnerItemOutputsRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getRunnerItemOutputsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (userAppIdBuilder_ == null) {
userAppId_ = null;
} else {
userAppId_ = null;
userAppIdBuilder_ = null;
}
nodepoolId_ = "";
runnerId_ = "";
runnerItemId_ = "";
if (runnerItemOutputsBuilder_ == null) {
runnerItemOutputs_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
runnerItemOutputsBuilder_.clear();
}
if (statusBuilder_ == null) {
status_ = null;
} else {
status_ = null;
statusBuilder_ = null;
}
runnerReplicaId_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.clarifai.grpc.api.Service.internal_static_clarifai_api_PostRunnerItemOutputsRequest_descriptor;
}
@java.lang.Override
public com.clarifai.grpc.api.PostRunnerItemOutputsRequest getDefaultInstanceForType() {
return com.clarifai.grpc.api.PostRunnerItemOutputsRequest.getDefaultInstance();
}
@java.lang.Override
public com.clarifai.grpc.api.PostRunnerItemOutputsRequest build() {
com.clarifai.grpc.api.PostRunnerItemOutputsRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.clarifai.grpc.api.PostRunnerItemOutputsRequest buildPartial() {
com.clarifai.grpc.api.PostRunnerItemOutputsRequest result = new com.clarifai.grpc.api.PostRunnerItemOutputsRequest(this);
int from_bitField0_ = bitField0_;
if (userAppIdBuilder_ == null) {
result.userAppId_ = userAppId_;
} else {
result.userAppId_ = userAppIdBuilder_.build();
}
result.nodepoolId_ = nodepoolId_;
result.runnerId_ = runnerId_;
result.runnerItemId_ = runnerItemId_;
if (runnerItemOutputsBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
runnerItemOutputs_ = java.util.Collections.unmodifiableList(runnerItemOutputs_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.runnerItemOutputs_ = runnerItemOutputs_;
} else {
result.runnerItemOutputs_ = runnerItemOutputsBuilder_.build();
}
if (statusBuilder_ == null) {
result.status_ = status_;
} else {
result.status_ = statusBuilder_.build();
}
result.runnerReplicaId_ = runnerReplicaId_;
onBuilt();
return result;
}
@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 com.clarifai.grpc.api.PostRunnerItemOutputsRequest) {
return mergeFrom((com.clarifai.grpc.api.PostRunnerItemOutputsRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.clarifai.grpc.api.PostRunnerItemOutputsRequest other) {
if (other == com.clarifai.grpc.api.PostRunnerItemOutputsRequest.getDefaultInstance()) return this;
if (other.hasUserAppId()) {
mergeUserAppId(other.getUserAppId());
}
if (!other.getNodepoolId().isEmpty()) {
nodepoolId_ = other.nodepoolId_;
onChanged();
}
if (!other.getRunnerId().isEmpty()) {
runnerId_ = other.runnerId_;
onChanged();
}
if (!other.getRunnerItemId().isEmpty()) {
runnerItemId_ = other.runnerItemId_;
onChanged();
}
if (runnerItemOutputsBuilder_ == null) {
if (!other.runnerItemOutputs_.isEmpty()) {
if (runnerItemOutputs_.isEmpty()) {
runnerItemOutputs_ = other.runnerItemOutputs_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureRunnerItemOutputsIsMutable();
runnerItemOutputs_.addAll(other.runnerItemOutputs_);
}
onChanged();
}
} else {
if (!other.runnerItemOutputs_.isEmpty()) {
if (runnerItemOutputsBuilder_.isEmpty()) {
runnerItemOutputsBuilder_.dispose();
runnerItemOutputsBuilder_ = null;
runnerItemOutputs_ = other.runnerItemOutputs_;
bitField0_ = (bitField0_ & ~0x00000001);
runnerItemOutputsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getRunnerItemOutputsFieldBuilder() : null;
} else {
runnerItemOutputsBuilder_.addAllMessages(other.runnerItemOutputs_);
}
}
}
if (other.hasStatus()) {
mergeStatus(other.getStatus());
}
if (!other.getRunnerReplicaId().isEmpty()) {
runnerReplicaId_ = other.runnerReplicaId_;
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
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 {
com.clarifai.grpc.api.PostRunnerItemOutputsRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.clarifai.grpc.api.PostRunnerItemOutputsRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private com.clarifai.grpc.api.UserAppIDSet userAppId_;
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.UserAppIDSet, com.clarifai.grpc.api.UserAppIDSet.Builder, com.clarifai.grpc.api.UserAppIDSetOrBuilder> userAppIdBuilder_;
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return Whether the userAppId field is set.
*/
public boolean hasUserAppId() {
return userAppIdBuilder_ != null || userAppId_ != null;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return The userAppId.
*/
public com.clarifai.grpc.api.UserAppIDSet getUserAppId() {
if (userAppIdBuilder_ == null) {
return userAppId_ == null ? com.clarifai.grpc.api.UserAppIDSet.getDefaultInstance() : userAppId_;
} else {
return userAppIdBuilder_.getMessage();
}
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
public Builder setUserAppId(com.clarifai.grpc.api.UserAppIDSet value) {
if (userAppIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
userAppId_ = value;
onChanged();
} else {
userAppIdBuilder_.setMessage(value);
}
return this;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
public Builder setUserAppId(
com.clarifai.grpc.api.UserAppIDSet.Builder builderForValue) {
if (userAppIdBuilder_ == null) {
userAppId_ = builderForValue.build();
onChanged();
} else {
userAppIdBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
public Builder mergeUserAppId(com.clarifai.grpc.api.UserAppIDSet value) {
if (userAppIdBuilder_ == null) {
if (userAppId_ != null) {
userAppId_ =
com.clarifai.grpc.api.UserAppIDSet.newBuilder(userAppId_).mergeFrom(value).buildPartial();
} else {
userAppId_ = value;
}
onChanged();
} else {
userAppIdBuilder_.mergeFrom(value);
}
return this;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
public Builder clearUserAppId() {
if (userAppIdBuilder_ == null) {
userAppId_ = null;
onChanged();
} else {
userAppId_ = null;
userAppIdBuilder_ = null;
}
return this;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
public com.clarifai.grpc.api.UserAppIDSet.Builder getUserAppIdBuilder() {
onChanged();
return getUserAppIdFieldBuilder().getBuilder();
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
public com.clarifai.grpc.api.UserAppIDSetOrBuilder getUserAppIdOrBuilder() {
if (userAppIdBuilder_ != null) {
return userAppIdBuilder_.getMessageOrBuilder();
} else {
return userAppId_ == null ?
com.clarifai.grpc.api.UserAppIDSet.getDefaultInstance() : userAppId_;
}
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.UserAppIDSet, com.clarifai.grpc.api.UserAppIDSet.Builder, com.clarifai.grpc.api.UserAppIDSetOrBuilder>
getUserAppIdFieldBuilder() {
if (userAppIdBuilder_ == null) {
userAppIdBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.UserAppIDSet, com.clarifai.grpc.api.UserAppIDSet.Builder, com.clarifai.grpc.api.UserAppIDSetOrBuilder>(
getUserAppId(),
getParentForChildren(),
isClean());
userAppId_ = null;
}
return userAppIdBuilder_;
}
private java.lang.Object nodepoolId_ = "";
/**
*
* The particular nodepool that runner belongs to
*
*
* string nodepool_id = 2;
* @return The nodepoolId.
*/
public java.lang.String getNodepoolId() {
java.lang.Object ref = nodepoolId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
nodepoolId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The particular nodepool that runner belongs to
*
*
* string nodepool_id = 2;
* @return The bytes for nodepoolId.
*/
public com.google.protobuf.ByteString
getNodepoolIdBytes() {
java.lang.Object ref = nodepoolId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
nodepoolId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The particular nodepool that runner belongs to
*
*
* string nodepool_id = 2;
* @param value The nodepoolId to set.
* @return This builder for chaining.
*/
public Builder setNodepoolId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
nodepoolId_ = value;
onChanged();
return this;
}
/**
*
* The particular nodepool that runner belongs to
*
*
* string nodepool_id = 2;
* @return This builder for chaining.
*/
public Builder clearNodepoolId() {
nodepoolId_ = getDefaultInstance().getNodepoolId();
onChanged();
return this;
}
/**
*
* The particular nodepool that runner belongs to
*
*
* string nodepool_id = 2;
* @param value The bytes for nodepoolId to set.
* @return This builder for chaining.
*/
public Builder setNodepoolIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
nodepoolId_ = value;
onChanged();
return this;
}
private java.lang.Object runnerId_ = "";
/**
*
* The particular runner that processed the work.
*
*
* string runner_id = 3;
* @return The runnerId.
*/
public java.lang.String getRunnerId() {
java.lang.Object ref = runnerId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
runnerId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The particular runner that processed the work.
*
*
* string runner_id = 3;
* @return The bytes for runnerId.
*/
public com.google.protobuf.ByteString
getRunnerIdBytes() {
java.lang.Object ref = runnerId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
runnerId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The particular runner that processed the work.
*
*
* string runner_id = 3;
* @param value The runnerId to set.
* @return This builder for chaining.
*/
public Builder setRunnerId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
runnerId_ = value;
onChanged();
return this;
}
/**
*
* The particular runner that processed the work.
*
*
* string runner_id = 3;
* @return This builder for chaining.
*/
public Builder clearRunnerId() {
runnerId_ = getDefaultInstance().getRunnerId();
onChanged();
return this;
}
/**
*
* The particular runner that processed the work.
*
*
* string runner_id = 3;
* @param value The bytes for runnerId to set.
* @return This builder for chaining.
*/
public Builder setRunnerIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
runnerId_ = value;
onChanged();
return this;
}
private java.lang.Object runnerItemId_ = "";
/**
*
* The particular item of work processed.
*
*
* string runner_item_id = 4;
* @return The runnerItemId.
*/
public java.lang.String getRunnerItemId() {
java.lang.Object ref = runnerItemId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
runnerItemId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The particular item of work processed.
*
*
* string runner_item_id = 4;
* @return The bytes for runnerItemId.
*/
public com.google.protobuf.ByteString
getRunnerItemIdBytes() {
java.lang.Object ref = runnerItemId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
runnerItemId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The particular item of work processed.
*
*
* string runner_item_id = 4;
* @param value The runnerItemId to set.
* @return This builder for chaining.
*/
public Builder setRunnerItemId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
runnerItemId_ = value;
onChanged();
return this;
}
/**
*
* The particular item of work processed.
*
*
* string runner_item_id = 4;
* @return This builder for chaining.
*/
public Builder clearRunnerItemId() {
runnerItemId_ = getDefaultInstance().getRunnerItemId();
onChanged();
return this;
}
/**
*
* The particular item of work processed.
*
*
* string runner_item_id = 4;
* @param value The bytes for runnerItemId to set.
* @return This builder for chaining.
*/
public Builder setRunnerItemIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
runnerItemId_ = value;
onChanged();
return this;
}
private java.util.List runnerItemOutputs_ =
java.util.Collections.emptyList();
private void ensureRunnerItemOutputsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
runnerItemOutputs_ = new java.util.ArrayList(runnerItemOutputs_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.clarifai.grpc.api.RunnerItemOutput, com.clarifai.grpc.api.RunnerItemOutput.Builder, com.clarifai.grpc.api.RunnerItemOutputOrBuilder> runnerItemOutputsBuilder_;
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public java.util.List getRunnerItemOutputsList() {
if (runnerItemOutputsBuilder_ == null) {
return java.util.Collections.unmodifiableList(runnerItemOutputs_);
} else {
return runnerItemOutputsBuilder_.getMessageList();
}
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public int getRunnerItemOutputsCount() {
if (runnerItemOutputsBuilder_ == null) {
return runnerItemOutputs_.size();
} else {
return runnerItemOutputsBuilder_.getCount();
}
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public com.clarifai.grpc.api.RunnerItemOutput getRunnerItemOutputs(int index) {
if (runnerItemOutputsBuilder_ == null) {
return runnerItemOutputs_.get(index);
} else {
return runnerItemOutputsBuilder_.getMessage(index);
}
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public Builder setRunnerItemOutputs(
int index, com.clarifai.grpc.api.RunnerItemOutput value) {
if (runnerItemOutputsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureRunnerItemOutputsIsMutable();
runnerItemOutputs_.set(index, value);
onChanged();
} else {
runnerItemOutputsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public Builder setRunnerItemOutputs(
int index, com.clarifai.grpc.api.RunnerItemOutput.Builder builderForValue) {
if (runnerItemOutputsBuilder_ == null) {
ensureRunnerItemOutputsIsMutable();
runnerItemOutputs_.set(index, builderForValue.build());
onChanged();
} else {
runnerItemOutputsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public Builder addRunnerItemOutputs(com.clarifai.grpc.api.RunnerItemOutput value) {
if (runnerItemOutputsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureRunnerItemOutputsIsMutable();
runnerItemOutputs_.add(value);
onChanged();
} else {
runnerItemOutputsBuilder_.addMessage(value);
}
return this;
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public Builder addRunnerItemOutputs(
int index, com.clarifai.grpc.api.RunnerItemOutput value) {
if (runnerItemOutputsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureRunnerItemOutputsIsMutable();
runnerItemOutputs_.add(index, value);
onChanged();
} else {
runnerItemOutputsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public Builder addRunnerItemOutputs(
com.clarifai.grpc.api.RunnerItemOutput.Builder builderForValue) {
if (runnerItemOutputsBuilder_ == null) {
ensureRunnerItemOutputsIsMutable();
runnerItemOutputs_.add(builderForValue.build());
onChanged();
} else {
runnerItemOutputsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public Builder addRunnerItemOutputs(
int index, com.clarifai.grpc.api.RunnerItemOutput.Builder builderForValue) {
if (runnerItemOutputsBuilder_ == null) {
ensureRunnerItemOutputsIsMutable();
runnerItemOutputs_.add(index, builderForValue.build());
onChanged();
} else {
runnerItemOutputsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public Builder addAllRunnerItemOutputs(
java.lang.Iterable extends com.clarifai.grpc.api.RunnerItemOutput> values) {
if (runnerItemOutputsBuilder_ == null) {
ensureRunnerItemOutputsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, runnerItemOutputs_);
onChanged();
} else {
runnerItemOutputsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public Builder clearRunnerItemOutputs() {
if (runnerItemOutputsBuilder_ == null) {
runnerItemOutputs_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
runnerItemOutputsBuilder_.clear();
}
return this;
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public Builder removeRunnerItemOutputs(int index) {
if (runnerItemOutputsBuilder_ == null) {
ensureRunnerItemOutputsIsMutable();
runnerItemOutputs_.remove(index);
onChanged();
} else {
runnerItemOutputsBuilder_.remove(index);
}
return this;
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public com.clarifai.grpc.api.RunnerItemOutput.Builder getRunnerItemOutputsBuilder(
int index) {
return getRunnerItemOutputsFieldBuilder().getBuilder(index);
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public com.clarifai.grpc.api.RunnerItemOutputOrBuilder getRunnerItemOutputsOrBuilder(
int index) {
if (runnerItemOutputsBuilder_ == null) {
return runnerItemOutputs_.get(index); } else {
return runnerItemOutputsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public java.util.List extends com.clarifai.grpc.api.RunnerItemOutputOrBuilder>
getRunnerItemOutputsOrBuilderList() {
if (runnerItemOutputsBuilder_ != null) {
return runnerItemOutputsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(runnerItemOutputs_);
}
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public com.clarifai.grpc.api.RunnerItemOutput.Builder addRunnerItemOutputsBuilder() {
return getRunnerItemOutputsFieldBuilder().addBuilder(
com.clarifai.grpc.api.RunnerItemOutput.getDefaultInstance());
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public com.clarifai.grpc.api.RunnerItemOutput.Builder addRunnerItemOutputsBuilder(
int index) {
return getRunnerItemOutputsFieldBuilder().addBuilder(
index, com.clarifai.grpc.api.RunnerItemOutput.getDefaultInstance());
}
/**
*
* This allows you to create one or more runner by posting it to the API.
*
*
* repeated .clarifai.api.RunnerItemOutput runner_item_outputs = 5;
*/
public java.util.List
getRunnerItemOutputsBuilderList() {
return getRunnerItemOutputsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.clarifai.grpc.api.RunnerItemOutput, com.clarifai.grpc.api.RunnerItemOutput.Builder, com.clarifai.grpc.api.RunnerItemOutputOrBuilder>
getRunnerItemOutputsFieldBuilder() {
if (runnerItemOutputsBuilder_ == null) {
runnerItemOutputsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.clarifai.grpc.api.RunnerItemOutput, com.clarifai.grpc.api.RunnerItemOutput.Builder, com.clarifai.grpc.api.RunnerItemOutputOrBuilder>(
runnerItemOutputs_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
runnerItemOutputs_ = null;
}
return runnerItemOutputsBuilder_;
}
private com.clarifai.grpc.api.status.Status status_;
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.status.Status, com.clarifai.grpc.api.status.Status.Builder, com.clarifai.grpc.api.status.StatusOrBuilder> statusBuilder_;
/**
*
* This request has a status so that it can communicate to the API from runners and
* communicate status, errors, etc. This is on the request since runners operate
* in a reverse protocol. This status is also used to initiate the
* ProcessRunnerItems request with RUNNER_STREAM_START code.
*
*
* .clarifai.api.status.Status status = 6;
* @return Whether the status field is set.
*/
public boolean hasStatus() {
return statusBuilder_ != null || status_ != null;
}
/**
*
* This request has a status so that it can communicate to the API from runners and
* communicate status, errors, etc. This is on the request since runners operate
* in a reverse protocol. This status is also used to initiate the
* ProcessRunnerItems request with RUNNER_STREAM_START code.
*
*
* .clarifai.api.status.Status status = 6;
* @return The status.
*/
public com.clarifai.grpc.api.status.Status getStatus() {
if (statusBuilder_ == null) {
return status_ == null ? com.clarifai.grpc.api.status.Status.getDefaultInstance() : status_;
} else {
return statusBuilder_.getMessage();
}
}
/**
*
* This request has a status so that it can communicate to the API from runners and
* communicate status, errors, etc. This is on the request since runners operate
* in a reverse protocol. This status is also used to initiate the
* ProcessRunnerItems request with RUNNER_STREAM_START code.
*
*
* .clarifai.api.status.Status status = 6;
*/
public Builder setStatus(com.clarifai.grpc.api.status.Status value) {
if (statusBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
status_ = value;
onChanged();
} else {
statusBuilder_.setMessage(value);
}
return this;
}
/**
*
* This request has a status so that it can communicate to the API from runners and
* communicate status, errors, etc. This is on the request since runners operate
* in a reverse protocol. This status is also used to initiate the
* ProcessRunnerItems request with RUNNER_STREAM_START code.
*
*
* .clarifai.api.status.Status status = 6;
*/
public Builder setStatus(
com.clarifai.grpc.api.status.Status.Builder builderForValue) {
if (statusBuilder_ == null) {
status_ = builderForValue.build();
onChanged();
} else {
statusBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* This request has a status so that it can communicate to the API from runners and
* communicate status, errors, etc. This is on the request since runners operate
* in a reverse protocol. This status is also used to initiate the
* ProcessRunnerItems request with RUNNER_STREAM_START code.
*
*
* .clarifai.api.status.Status status = 6;
*/
public Builder mergeStatus(com.clarifai.grpc.api.status.Status value) {
if (statusBuilder_ == null) {
if (status_ != null) {
status_ =
com.clarifai.grpc.api.status.Status.newBuilder(status_).mergeFrom(value).buildPartial();
} else {
status_ = value;
}
onChanged();
} else {
statusBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* This request has a status so that it can communicate to the API from runners and
* communicate status, errors, etc. This is on the request since runners operate
* in a reverse protocol. This status is also used to initiate the
* ProcessRunnerItems request with RUNNER_STREAM_START code.
*
*
* .clarifai.api.status.Status status = 6;
*/
public Builder clearStatus() {
if (statusBuilder_ == null) {
status_ = null;
onChanged();
} else {
status_ = null;
statusBuilder_ = null;
}
return this;
}
/**
*
* This request has a status so that it can communicate to the API from runners and
* communicate status, errors, etc. This is on the request since runners operate
* in a reverse protocol. This status is also used to initiate the
* ProcessRunnerItems request with RUNNER_STREAM_START code.
*
*
* .clarifai.api.status.Status status = 6;
*/
public com.clarifai.grpc.api.status.Status.Builder getStatusBuilder() {
onChanged();
return getStatusFieldBuilder().getBuilder();
}
/**
*
* This request has a status so that it can communicate to the API from runners and
* communicate status, errors, etc. This is on the request since runners operate
* in a reverse protocol. This status is also used to initiate the
* ProcessRunnerItems request with RUNNER_STREAM_START code.
*
*
* .clarifai.api.status.Status status = 6;
*/
public com.clarifai.grpc.api.status.StatusOrBuilder getStatusOrBuilder() {
if (statusBuilder_ != null) {
return statusBuilder_.getMessageOrBuilder();
} else {
return status_ == null ?
com.clarifai.grpc.api.status.Status.getDefaultInstance() : status_;
}
}
/**
*
* This request has a status so that it can communicate to the API from runners and
* communicate status, errors, etc. This is on the request since runners operate
* in a reverse protocol. This status is also used to initiate the
* ProcessRunnerItems request with RUNNER_STREAM_START code.
*
*
* .clarifai.api.status.Status status = 6;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.status.Status, com.clarifai.grpc.api.status.Status.Builder, com.clarifai.grpc.api.status.StatusOrBuilder>
getStatusFieldBuilder() {
if (statusBuilder_ == null) {
statusBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.status.Status, com.clarifai.grpc.api.status.Status.Builder, com.clarifai.grpc.api.status.StatusOrBuilder>(
getStatus(),
getParentForChildren(),
isClean());
status_ = null;
}
return statusBuilder_;
}
private java.lang.Object runnerReplicaId_ = "";
/**
*
* A unique ID to represent the runner. This may be tied to an underlying compute instance
* information or just an UUID.
*
*
* string runner_replica_id = 7;
* @return The runnerReplicaId.
*/
public java.lang.String getRunnerReplicaId() {
java.lang.Object ref = runnerReplicaId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
runnerReplicaId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* A unique ID to represent the runner. This may be tied to an underlying compute instance
* information or just an UUID.
*
*
* string runner_replica_id = 7;
* @return The bytes for runnerReplicaId.
*/
public com.google.protobuf.ByteString
getRunnerReplicaIdBytes() {
java.lang.Object ref = runnerReplicaId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
runnerReplicaId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* A unique ID to represent the runner. This may be tied to an underlying compute instance
* information or just an UUID.
*
*
* string runner_replica_id = 7;
* @param value The runnerReplicaId to set.
* @return This builder for chaining.
*/
public Builder setRunnerReplicaId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
runnerReplicaId_ = value;
onChanged();
return this;
}
/**
*
* A unique ID to represent the runner. This may be tied to an underlying compute instance
* information or just an UUID.
*
*
* string runner_replica_id = 7;
* @return This builder for chaining.
*/
public Builder clearRunnerReplicaId() {
runnerReplicaId_ = getDefaultInstance().getRunnerReplicaId();
onChanged();
return this;
}
/**
*
* A unique ID to represent the runner. This may be tied to an underlying compute instance
* information or just an UUID.
*
*
* string runner_replica_id = 7;
* @param value The bytes for runnerReplicaId to set.
* @return This builder for chaining.
*/
public Builder setRunnerReplicaIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
runnerReplicaId_ = value;
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:clarifai.api.PostRunnerItemOutputsRequest)
}
// @@protoc_insertion_point(class_scope:clarifai.api.PostRunnerItemOutputsRequest)
private static final com.clarifai.grpc.api.PostRunnerItemOutputsRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.clarifai.grpc.api.PostRunnerItemOutputsRequest();
}
public static com.clarifai.grpc.api.PostRunnerItemOutputsRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public PostRunnerItemOutputsRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PostRunnerItemOutputsRequest(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.clarifai.grpc.api.PostRunnerItemOutputsRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}