All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clarifai.grpc.api.PostInputsRequestOrBuilder Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: proto/clarifai/api/service.proto

package com.clarifai.grpc.api;

public interface PostInputsRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:clarifai.api.PostInputsRequest)
    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();

  /**
   * 
   * List of inputs to post.
   * For each input, the following fields are used:
   * * id
   * * data
   * * dataset_ids
   * 
* * repeated .clarifai.api.Input inputs = 2; */ java.util.List getInputsList(); /** *
   * List of inputs to post.
   * For each input, the following fields are used:
   * * id
   * * data
   * * dataset_ids
   * 
* * repeated .clarifai.api.Input inputs = 2; */ com.clarifai.grpc.api.Input getInputs(int index); /** *
   * List of inputs to post.
   * For each input, the following fields are used:
   * * id
   * * data
   * * dataset_ids
   * 
* * repeated .clarifai.api.Input inputs = 2; */ int getInputsCount(); /** *
   * List of inputs to post.
   * For each input, the following fields are used:
   * * id
   * * data
   * * dataset_ids
   * 
* * repeated .clarifai.api.Input inputs = 2; */ java.util.List getInputsOrBuilderList(); /** *
   * List of inputs to post.
   * For each input, the following fields are used:
   * * id
   * * data
   * * dataset_ids
   * 
* * repeated .clarifai.api.Input inputs = 2; */ com.clarifai.grpc.api.InputOrBuilder getInputsOrBuilder( int index); /** *
   * Collect statistics about created inputs in job with given ID.
   * * If job ID is empty, then job is not created.
   * * If job ID is non-empty and doesn't already exist, then a new job will be created with given ID.
   * * If job ID does already exist, then new inputs statistics are merged with previous inputs statistics.
   * 
* * string inputs_add_job_id = 3; * @return The inputsAddJobId. */ java.lang.String getInputsAddJobId(); /** *
   * Collect statistics about created inputs in job with given ID.
   * * If job ID is empty, then job is not created.
   * * If job ID is non-empty and doesn't already exist, then a new job will be created with given ID.
   * * If job ID does already exist, then new inputs statistics are merged with previous inputs statistics.
   * 
* * string inputs_add_job_id = 3; * @return The bytes for inputsAddJobId. */ com.google.protobuf.ByteString getInputsAddJobIdBytes(); /** *
   * How to handle input ID conflicts.
   * 
* * .clarifai.api.InputIDConflictResolution input_id_conflict_resolution = 4; * @return The enum numeric value on the wire for inputIdConflictResolution. */ int getInputIdConflictResolutionValue(); /** *
   * How to handle input ID conflicts.
   * 
* * .clarifai.api.InputIDConflictResolution input_id_conflict_resolution = 4; * @return The inputIdConflictResolution. */ com.clarifai.grpc.api.InputIDConflictResolution getInputIdConflictResolution(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy