com.clarifai.grpc.api.PatchAppsRequestOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/service.proto
package com.clarifai.grpc.api;
public interface PatchAppsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.PatchAppsRequest)
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();
/**
* repeated .clarifai.api.App apps = 2;
*/
java.util.List
getAppsList();
/**
* repeated .clarifai.api.App apps = 2;
*/
com.clarifai.grpc.api.App getApps(int index);
/**
* repeated .clarifai.api.App apps = 2;
*/
int getAppsCount();
/**
* repeated .clarifai.api.App apps = 2;
*/
java.util.List extends com.clarifai.grpc.api.AppOrBuilder>
getAppsOrBuilderList();
/**
* repeated .clarifai.api.App apps = 2;
*/
com.clarifai.grpc.api.AppOrBuilder getAppsOrBuilder(
int index);
/**
*
* The action to perform on the patched App objects 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 that app.
*
*
* string action = 3;
* @return The action.
*/
java.lang.String getAction();
/**
*
* The action to perform on the patched App objects 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 that 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();
}