com.clarifai.grpc.api.PostWorkflowResultsSimilarityRequestOrBuilder 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 PostWorkflowResultsSimilarityRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.PostWorkflowResultsSimilarityRequest)
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 workflow_id = 2;
* @return The workflowId.
*/
java.lang.String getWorkflowId();
/**
* string workflow_id = 2;
* @return The bytes for workflowId.
*/
com.google.protobuf.ByteString
getWorkflowIdBytes();
/**
*
* Workflow version ID to retrieve
* If no ID is specified, latest workflow version is used
*
*
* string version_id = 7;
* @return The versionId.
*/
java.lang.String getVersionId();
/**
*
* Workflow version ID to retrieve
* If no ID is specified, latest workflow version is used
*
*
* string version_id = 7;
* @return The bytes for versionId.
*/
com.google.protobuf.ByteString
getVersionIdBytes();
/**
*
* The specific model version whose outputs we are comparing
*
*
* string model_version_id = 3;
* @return The modelVersionId.
*/
java.lang.String getModelVersionId();
/**
*
* The specific model version whose outputs we are comparing
*
*
* string model_version_id = 3;
* @return The bytes for modelVersionId.
*/
com.google.protobuf.ByteString
getModelVersionIdBytes();
/**
*
* Each probe is compared against every pool input
*
*
* repeated .clarifai.api.Input probe_inputs = 4;
*/
java.util.List
getProbeInputsList();
/**
*
* Each probe is compared against every pool input
*
*
* repeated .clarifai.api.Input probe_inputs = 4;
*/
com.clarifai.grpc.api.Input getProbeInputs(int index);
/**
*
* Each probe is compared against every pool input
*
*
* repeated .clarifai.api.Input probe_inputs = 4;
*/
int getProbeInputsCount();
/**
*
* Each probe is compared against every pool input
*
*
* repeated .clarifai.api.Input probe_inputs = 4;
*/
java.util.List extends com.clarifai.grpc.api.InputOrBuilder>
getProbeInputsOrBuilderList();
/**
*
* Each probe is compared against every pool input
*
*
* repeated .clarifai.api.Input probe_inputs = 4;
*/
com.clarifai.grpc.api.InputOrBuilder getProbeInputsOrBuilder(
int index);
/**
*
* Each pool input is compared against ever probe input
*
*
* repeated .clarifai.api.Input pool_inputs = 5;
*/
java.util.List
getPoolInputsList();
/**
*
* Each pool input is compared against ever probe input
*
*
* repeated .clarifai.api.Input pool_inputs = 5;
*/
com.clarifai.grpc.api.Input getPoolInputs(int index);
/**
*
* Each pool input is compared against ever probe input
*
*
* repeated .clarifai.api.Input pool_inputs = 5;
*/
int getPoolInputsCount();
/**
*
* Each pool input is compared against ever probe input
*
*
* repeated .clarifai.api.Input pool_inputs = 5;
*/
java.util.List extends com.clarifai.grpc.api.InputOrBuilder>
getPoolInputsOrBuilderList();
/**
*
* Each pool input is compared against ever probe input
*
*
* repeated .clarifai.api.Input pool_inputs = 5;
*/
com.clarifai.grpc.api.InputOrBuilder getPoolInputsOrBuilder(
int index);
/**
*
* Use this flag to look into clarifai published workflows first for a Workflow ID
*
*
* bool favor_clarifai_workflows = 6;
* @return The favorClarifaiWorkflows.
*/
boolean getFavorClarifaiWorkflows();
}