com.clarifai.grpc.api.PutDatasetVersionExportsRequestOrBuilder 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 PutDatasetVersionExportsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.PutDatasetVersionExportsRequest)
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();
/**
*
* Identify dataset by id.
*
*
* string dataset_id = 2;
* @return The datasetId.
*/
java.lang.String getDatasetId();
/**
*
* Identify dataset by id.
*
*
* string dataset_id = 2;
* @return The bytes for datasetId.
*/
com.google.protobuf.ByteString
getDatasetIdBytes();
/**
*
* Identify dataset version by id.
*
*
* string dataset_version_id = 3;
* @return The datasetVersionId.
*/
java.lang.String getDatasetVersionId();
/**
*
* Identify dataset version by id.
*
*
* string dataset_version_id = 3;
* @return The bytes for datasetVersionId.
*/
com.google.protobuf.ByteString
getDatasetVersionIdBytes();
/**
*
* exports is the list of requested dataset version exports.
* Only setting the 'format' field of the export is supported.
*
*
* repeated .clarifai.api.DatasetVersionExport exports = 4;
*/
java.util.List
getExportsList();
/**
*
* exports is the list of requested dataset version exports.
* Only setting the 'format' field of the export is supported.
*
*
* repeated .clarifai.api.DatasetVersionExport exports = 4;
*/
com.clarifai.grpc.api.DatasetVersionExport getExports(int index);
/**
*
* exports is the list of requested dataset version exports.
* Only setting the 'format' field of the export is supported.
*
*
* repeated .clarifai.api.DatasetVersionExport exports = 4;
*/
int getExportsCount();
/**
*
* exports is the list of requested dataset version exports.
* Only setting the 'format' field of the export is supported.
*
*
* repeated .clarifai.api.DatasetVersionExport exports = 4;
*/
java.util.List extends com.clarifai.grpc.api.DatasetVersionExportOrBuilder>
getExportsOrBuilderList();
/**
*
* exports is the list of requested dataset version exports.
* Only setting the 'format' field of the export is supported.
*
*
* repeated .clarifai.api.DatasetVersionExport exports = 4;
*/
com.clarifai.grpc.api.DatasetVersionExportOrBuilder getExportsOrBuilder(
int index);
}