com.clarifai.grpc.api.PatchDeploymentsRequestOrBuilder 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 PatchDeploymentsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.PatchDeploymentsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Only the user_id is used from this.
*
*
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return Whether the userAppId field is set.
*/
boolean hasUserAppId();
/**
*
* Only the user_id is used from this.
*
*
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return The userAppId.
*/
com.clarifai.grpc.api.UserAppIDSet getUserAppId();
/**
*
* Only the user_id is used from this.
*
*
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
com.clarifai.grpc.api.UserAppIDSetOrBuilder getUserAppIdOrBuilder();
/**
* repeated .clarifai.api.Deployment deployments = 3;
*/
java.util.List
getDeploymentsList();
/**
* repeated .clarifai.api.Deployment deployments = 3;
*/
com.clarifai.grpc.api.Deployment getDeployments(int index);
/**
* repeated .clarifai.api.Deployment deployments = 3;
*/
int getDeploymentsCount();
/**
* repeated .clarifai.api.Deployment deployments = 3;
*/
java.util.List extends com.clarifai.grpc.api.DeploymentOrBuilder>
getDeploymentsOrBuilderList();
/**
* repeated .clarifai.api.Deployment deployments = 3;
*/
com.clarifai.grpc.api.DeploymentOrBuilder getDeploymentsOrBuilder(
int index);
/**
*
* The action to perform on the patched objects
* For now actions 'merge', 'overwrite', and 'remove' are supported
*
*
* string action = 4;
* @return The action.
*/
java.lang.String getAction();
/**
*
* The action to perform on the patched objects
* For now actions 'merge', 'overwrite', and 'remove' are supported
*
*
* string action = 4;
* @return The bytes for action.
*/
com.google.protobuf.ByteString
getActionBytes();
}