Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/service.proto
package com.clarifai.grpc.api;
/**
*
* PatchAppRequest
*
*
* Protobuf type {@code clarifai.api.PatchAppRequest}
*/
public final class PatchAppRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:clarifai.api.PatchAppRequest)
PatchAppRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use PatchAppRequest.newBuilder() to construct.
private PatchAppRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private PatchAppRequest() {
action_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new PatchAppRequest();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PatchAppRequest(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
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: {
com.clarifai.grpc.api.App.Builder subBuilder = null;
if (app_ != null) {
subBuilder = app_.toBuilder();
}
app_ = input.readMessage(com.clarifai.grpc.api.App.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(app_);
app_ = subBuilder.buildPartial();
}
break;
}
case 26: {
java.lang.String s = input.readStringRequireUtf8();
action_ = s;
break;
}
case 34: {
com.clarifai.grpc.api.PatchAction.Builder subBuilder = null;
if (metadataAction_ != null) {
subBuilder = metadataAction_.toBuilder();
}
metadataAction_ = input.readMessage(com.clarifai.grpc.api.PatchAction.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(metadataAction_);
metadataAction_ = subBuilder.buildPartial();
}
break;
}
case 40: {
reindex_ = input.readBool();
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 {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.clarifai.grpc.api.Service.internal_static_clarifai_api_PatchAppRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.clarifai.grpc.api.Service.internal_static_clarifai_api_PatchAppRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.clarifai.grpc.api.PatchAppRequest.class, com.clarifai.grpc.api.PatchAppRequest.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 APP_FIELD_NUMBER = 2;
private com.clarifai.grpc.api.App app_;
/**
* .clarifai.api.App app = 2;
* @return Whether the app field is set.
*/
@java.lang.Override
public boolean hasApp() {
return app_ != null;
}
/**
* .clarifai.api.App app = 2;
* @return The app.
*/
@java.lang.Override
public com.clarifai.grpc.api.App getApp() {
return app_ == null ? com.clarifai.grpc.api.App.getDefaultInstance() : app_;
}
/**
* .clarifai.api.App app = 2;
*/
@java.lang.Override
public com.clarifai.grpc.api.AppOrBuilder getAppOrBuilder() {
return getApp();
}
public static final int ACTION_FIELD_NUMBER = 3;
private volatile java.lang.Object action_;
/**
*
* The action to perform on the patched App object except App.Metadata
* Supported values: 'overwrite' and 'remove'.
* Note that 'remove' can only be used to remove the app image by setting
* 'image.url' in the request to the current value returned for the app.
*
* The action to perform on the patched App object except App.Metadata
* Supported values: 'overwrite' and 'remove'.
* Note that 'remove' can only be used to remove the app image by setting
* 'image.url' in the request to the current value returned for the app.
*
*
* string action = 3;
* @return The bytes for action.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getActionBytes() {
java.lang.Object ref = action_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
action_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int METADATA_ACTION_FIELD_NUMBER = 4;
private com.clarifai.grpc.api.PatchAction metadataAction_;
/**
*
* The action to perform on the patched App.Metadata
*
*
* .clarifai.api.PatchAction metadata_action = 4;
* @return Whether the metadataAction field is set.
*/
@java.lang.Override
public boolean hasMetadataAction() {
return metadataAction_ != null;
}
/**
*
* The action to perform on the patched App.Metadata
*
* The action to perform on the patched App object except App.Metadata
* Supported values: 'overwrite' and 'remove'.
* Note that 'remove' can only be used to remove the app image by setting
* 'image.url' in the request to the current value returned for the app.
*
* The action to perform on the patched App object except App.Metadata
* Supported values: 'overwrite' and 'remove'.
* Note that 'remove' can only be used to remove the app image by setting
* 'image.url' in the request to the current value returned for the app.
*
*
* string action = 3;
* @return The bytes for action.
*/
public com.google.protobuf.ByteString
getActionBytes() {
java.lang.Object ref = action_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
action_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The action to perform on the patched App object except App.Metadata
* Supported values: 'overwrite' and 'remove'.
* Note that 'remove' can only be used to remove the app image by setting
* 'image.url' in the request to the current value returned for the app.
*
*
* string action = 3;
* @param value The action to set.
* @return This builder for chaining.
*/
public Builder setAction(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
action_ = value;
onChanged();
return this;
}
/**
*
* The action to perform on the patched App object except App.Metadata
* Supported values: 'overwrite' and 'remove'.
* Note that 'remove' can only be used to remove the app image by setting
* 'image.url' in the request to the current value returned for the app.
*
*
* string action = 3;
* @return This builder for chaining.
*/
public Builder clearAction() {
action_ = getDefaultInstance().getAction();
onChanged();
return this;
}
/**
*
* The action to perform on the patched App object except App.Metadata
* Supported values: 'overwrite' and 'remove'.
* Note that 'remove' can only be used to remove the app image by setting
* 'image.url' in the request to the current value returned for the app.
*
*
* string action = 3;
* @param value The bytes for action to set.
* @return This builder for chaining.
*/
public Builder setActionBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
action_ = value;
onChanged();
return this;
}
private com.clarifai.grpc.api.PatchAction metadataAction_;
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.PatchAction, com.clarifai.grpc.api.PatchAction.Builder, com.clarifai.grpc.api.PatchActionOrBuilder> metadataActionBuilder_;
/**
*
* The action to perform on the patched App.Metadata
*
*
* .clarifai.api.PatchAction metadata_action = 4;
* @return Whether the metadataAction field is set.
*/
public boolean hasMetadataAction() {
return metadataActionBuilder_ != null || metadataAction_ != null;
}
/**
*
* The action to perform on the patched App.Metadata
*