com.clarifai.grpc.api.PatchModulesRequestOrBuilder 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 PatchModulesRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.PatchModulesRequest)
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.Module modules = 2;
*/
java.util.List
getModulesList();
/**
* repeated .clarifai.api.Module modules = 2;
*/
com.clarifai.grpc.api.Module getModules(int index);
/**
* repeated .clarifai.api.Module modules = 2;
*/
int getModulesCount();
/**
* repeated .clarifai.api.Module modules = 2;
*/
java.util.List extends com.clarifai.grpc.api.ModuleOrBuilder>
getModulesOrBuilderList();
/**
* repeated .clarifai.api.Module modules = 2;
*/
com.clarifai.grpc.api.ModuleOrBuilder getModulesOrBuilder(
int index);
/**
*
* The action to perform on the patched objects
* Supported values: 'overwrite' and 'remove'.
* Note that 'remove' can only be used to remove the module image by setting
* 'image.url' in the request to the current value returned for that module.
*
*
* string action = 3;
* @return The action.
*/
java.lang.String getAction();
/**
*
* The action to perform on the patched objects
* Supported values: 'overwrite' and 'remove'.
* Note that 'remove' can only be used to remove the module image by setting
* 'image.url' in the request to the current value returned for that module.
*
*
* string action = 3;
* @return The bytes for action.
*/
com.google.protobuf.ByteString
getActionBytes();
}