com.clarifai.grpc.api.APIPostModelOutputsCollectorSourceOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
public interface APIPostModelOutputsCollectorSourceOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.APIPostModelOutputsCollectorSource)
com.google.protobuf.MessageOrBuilder {
/**
*
* To define the model that we should collect from we need to specify the following 4 IDs:
* The User ID of the model we want to collect from.
* This is User B in the example.
*
*
* string model_user_id = 1;
* @return The modelUserId.
*/
java.lang.String getModelUserId();
/**
*
* To define the model that we should collect from we need to specify the following 4 IDs:
* The User ID of the model we want to collect from.
* This is User B in the example.
*
*
* string model_user_id = 1;
* @return The bytes for modelUserId.
*/
com.google.protobuf.ByteString
getModelUserIdBytes();
/**
*
* The App ID of the model we want to collect from.
*
*
* string model_app_id = 2;
* @return The modelAppId.
*/
java.lang.String getModelAppId();
/**
*
* The App ID of the model we want to collect from.
*
*
* string model_app_id = 2;
* @return The bytes for modelAppId.
*/
com.google.protobuf.ByteString
getModelAppIdBytes();
/**
*
* The Model ID of the model we want to collect from.
*
*
* string model_id = 3;
* @return The modelId.
*/
java.lang.String getModelId();
/**
*
* The Model ID of the model we want to collect from.
*
*
* string model_id = 3;
* @return The bytes for modelId.
*/
com.google.protobuf.ByteString
getModelIdBytes();
/**
*
* The Version ID of the model we want to collect from.
*
*
* string model_version_id = 4;
* @return The modelVersionId.
*/
java.lang.String getModelVersionId();
/**
*
* The Version ID of the model we want to collect from.
*
*
* string model_version_id = 4;
* @return The bytes for modelVersionId.
*/
com.google.protobuf.ByteString
getModelVersionIdBytes();
/**
*
* This key is used to POST /inputs into your app by the collector. It can be an API key or a
* PAT. This needs the permissions that are needed for POST /inputs for the app_id this
* Collector is defined in.
*
*
* string post_inputs_key_id = 5;
* @return The postInputsKeyId.
*/
java.lang.String getPostInputsKeyId();
/**
*
* This key is used to POST /inputs into your app by the collector. It can be an API key or a
* PAT. This needs the permissions that are needed for POST /inputs for the app_id this
* Collector is defined in.
*
*
* string post_inputs_key_id = 5;
* @return The bytes for postInputsKeyId.
*/
com.google.protobuf.ByteString
getPostInputsKeyIdBytes();
/**
*
* This is a private field that defaults to the app owner for public users.
* If this is left blank then this collector will collect from ALL users calling the given model.
*
*
* string caller_user_id = 6;
* @return The callerUserId.
*/
java.lang.String getCallerUserId();
/**
*
* This is a private field that defaults to the app owner for public users.
* If this is left blank then this collector will collect from ALL users calling the given model.
*
*
* string caller_user_id = 6;
* @return The bytes for callerUserId.
*/
com.google.protobuf.ByteString
getCallerUserIdBytes();
}