com.clarifai.grpc.api.ListDatasetVersionsRequestOrBuilder 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 ListDatasetVersionsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.ListDatasetVersionsRequest)
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();
/**
*
* (optional URL parameter) The page number. Pagination is used to split the results into chunks.
* Defaults to 1.
*
*
* uint32 page = 3;
* @return The page.
*/
int getPage();
/**
*
* (optional URL parameter) The number of results that will be contained in each page. Defaults
* to 128.
*
*
* uint32 per_page = 4;
* @return The perPage.
*/
int getPerPage();
/**
*
* (optional URL parameter) Filter by origin of dataset version
*
*
* repeated .clarifai.api.DatasetVersionRequestOrigin request_origins = 5;
* @return A list containing the requestOrigins.
*/
java.util.List getRequestOriginsList();
/**
*
* (optional URL parameter) Filter by origin of dataset version
*
*
* repeated .clarifai.api.DatasetVersionRequestOrigin request_origins = 5;
* @return The count of requestOrigins.
*/
int getRequestOriginsCount();
/**
*
* (optional URL parameter) Filter by origin of dataset version
*
*
* repeated .clarifai.api.DatasetVersionRequestOrigin request_origins = 5;
* @param index The index of the element to return.
* @return The requestOrigins at the given index.
*/
com.clarifai.grpc.api.DatasetVersionRequestOrigin getRequestOrigins(int index);
/**
*
* (optional URL parameter) Filter by origin of dataset version
*
*
* repeated .clarifai.api.DatasetVersionRequestOrigin request_origins = 5;
* @return A list containing the enum numeric values on the wire for requestOrigins.
*/
java.util.List
getRequestOriginsValueList();
/**
*
* (optional URL parameter) Filter by origin of dataset version
*
*
* repeated .clarifai.api.DatasetVersionRequestOrigin request_origins = 5;
* @param index The index of the value to return.
* @return The enum numeric value on the wire of requestOrigins at the given index.
*/
int getRequestOriginsValue(int index);
}