com.clarifai.grpc.api.PostModelOutputsRequestOrBuilder 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 PostModelOutputsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.PostModelOutputsRequest)
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();
/**
* string model_id = 2;
* @return The modelId.
*/
java.lang.String getModelId();
/**
* string model_id = 2;
* @return The bytes for modelId.
*/
com.google.protobuf.ByteString
getModelIdBytes();
/**
* string version_id = 3;
* @return The versionId.
*/
java.lang.String getVersionId();
/**
* string version_id = 3;
* @return The bytes for versionId.
*/
com.google.protobuf.ByteString
getVersionIdBytes();
/**
* repeated .clarifai.api.Input inputs = 4;
*/
java.util.List
getInputsList();
/**
* repeated .clarifai.api.Input inputs = 4;
*/
com.clarifai.grpc.api.Input getInputs(int index);
/**
* repeated .clarifai.api.Input inputs = 4;
*/
int getInputsCount();
/**
* repeated .clarifai.api.Input inputs = 4;
*/
java.util.List extends com.clarifai.grpc.api.InputOrBuilder>
getInputsOrBuilderList();
/**
* repeated .clarifai.api.Input inputs = 4;
*/
com.clarifai.grpc.api.InputOrBuilder getInputsOrBuilder(
int index);
/**
*
* This allows you to specify config options for the model such as
* the language which appear's in the model's output_info.
*
*
* .clarifai.api.Model model = 5;
* @return Whether the model field is set.
*/
boolean hasModel();
/**
*
* This allows you to specify config options for the model such as
* the language which appear's in the model's output_info.
*
*
* .clarifai.api.Model model = 5;
* @return The model.
*/
com.clarifai.grpc.api.Model getModel();
/**
*
* This allows you to specify config options for the model such as
* the language which appear's in the model's output_info.
*
*
* .clarifai.api.Model model = 5;
*/
com.clarifai.grpc.api.ModelOrBuilder getModelOrBuilder();
/**
*
* Allow filtering of prediction requests down to specific Nodepools, Deploymetns or Runners
*
*
* .clarifai.api.RunnerSelector runner_selector = 6;
* @return Whether the runnerSelector field is set.
*/
boolean hasRunnerSelector();
/**
*
* Allow filtering of prediction requests down to specific Nodepools, Deploymetns or Runners
*
*
* .clarifai.api.RunnerSelector runner_selector = 6;
* @return The runnerSelector.
*/
com.clarifai.grpc.api.RunnerSelector getRunnerSelector();
/**
*
* Allow filtering of prediction requests down to specific Nodepools, Deploymetns or Runners
*
*
* .clarifai.api.RunnerSelector runner_selector = 6;
*/
com.clarifai.grpc.api.RunnerSelectorOrBuilder getRunnerSelectorOrBuilder();
}