com.clarifai.grpc.api.PatchAppRequestOrBuilder 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;
public interface PatchAppRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.PatchAppRequest)
com.google.protobuf.MessageOrBuilder {
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return Whether the userAppId field is set.
*/
boolean hasUserAppId();
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return The userAppId.
*/
com.clarifai.grpc.api.UserAppIDSet getUserAppId();
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
com.clarifai.grpc.api.UserAppIDSetOrBuilder getUserAppIdOrBuilder();
/**
* .clarifai.api.App app = 2;
* @return Whether the app field is set.
*/
boolean hasApp();
/**
* .clarifai.api.App app = 2;
* @return The app.
*/
com.clarifai.grpc.api.App getApp();
/**
* .clarifai.api.App app = 2;
*/
com.clarifai.grpc.api.AppOrBuilder getAppOrBuilder();
/**
*
* 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 action.
*/
java.lang.String getAction();
/**
*
* 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.
*/
com.google.protobuf.ByteString
getActionBytes();
/**
*
* The action to perform on the patched App.Metadata
*
*
* .clarifai.api.PatchAction metadata_action = 4;
* @return Whether the metadataAction field is set.
*/
boolean hasMetadataAction();
/**
*
* The action to perform on the patched App.Metadata
*
*
* .clarifai.api.PatchAction metadata_action = 4;
* @return The metadataAction.
*/
com.clarifai.grpc.api.PatchAction getMetadataAction();
/**
*
* The action to perform on the patched App.Metadata
*
*
* .clarifai.api.PatchAction metadata_action = 4;
*/
com.clarifai.grpc.api.PatchActionOrBuilder getMetadataActionOrBuilder();
/**
*
* If set, the app will be automatically reindexed upon change of its base workflow.
*
*
* bool reindex = 5;
* @return The reindex.
*/
boolean getReindex();
}