com.clarifai.grpc.api.ListDatasetVersionMetricsGroupsRequestOrBuilder 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 ListDatasetVersionMetricsGroupsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.ListDatasetVersionMetricsGroupsRequest)
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();
/**
*
* (optional URL parameter) The page number. Pagination is used to split the results into chunks.
* Defaults to 1.
*
*
* uint32 page = 4;
* @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 = 5;
* @return The perPage.
*/
int getPerPage();
/**
*
* Filter by parent path. Multiple parent paths are OR-ed. Empty list results in no filter.
*
*
* repeated string parent_paths = 6;
* @return A list containing the parentPaths.
*/
java.util.List
getParentPathsList();
/**
*
* Filter by parent path. Multiple parent paths are OR-ed. Empty list results in no filter.
*
*
* repeated string parent_paths = 6;
* @return The count of parentPaths.
*/
int getParentPathsCount();
/**
*
* Filter by parent path. Multiple parent paths are OR-ed. Empty list results in no filter.
*
*
* repeated string parent_paths = 6;
* @param index The index of the element to return.
* @return The parentPaths at the given index.
*/
java.lang.String getParentPaths(int index);
/**
*
* Filter by parent path. Multiple parent paths are OR-ed. Empty list results in no filter.
*
*
* repeated string parent_paths = 6;
* @param index The index of the value to return.
* @return The bytes of the parentPaths at the given index.
*/
com.google.protobuf.ByteString
getParentPathsBytes(int index);
/**
*
* Filter by parent type. Multiple types are OR-ed. Empty list results in no filter.
*
*
* repeated .clarifai.api.DatasetVersionMetricsGroupType types = 7;
* @return A list containing the types.
*/
java.util.List getTypesList();
/**
*
* Filter by parent type. Multiple types are OR-ed. Empty list results in no filter.
*
*
* repeated .clarifai.api.DatasetVersionMetricsGroupType types = 7;
* @return The count of types.
*/
int getTypesCount();
/**
*
* Filter by parent type. Multiple types are OR-ed. Empty list results in no filter.
*
*
* repeated .clarifai.api.DatasetVersionMetricsGroupType types = 7;
* @param index The index of the element to return.
* @return The types at the given index.
*/
com.clarifai.grpc.api.DatasetVersionMetricsGroupType getTypes(int index);
/**
*
* Filter by parent type. Multiple types are OR-ed. Empty list results in no filter.
*
*
* repeated .clarifai.api.DatasetVersionMetricsGroupType types = 7;
* @return A list containing the enum numeric values on the wire for types.
*/
java.util.List
getTypesValueList();
/**
*
* Filter by parent type. Multiple types are OR-ed. Empty list results in no filter.
*
*
* repeated .clarifai.api.DatasetVersionMetricsGroupType types = 7;
* @param index The index of the value to return.
* @return The enum numeric value on the wire of types at the given index.
*/
int getTypesValue(int index);
/**
*
* Filter by value. Multiple values are OR-ed. Empty list results in no filter.
*
*
* repeated .google.protobuf.Value values = 8;
*/
java.util.List
getValuesList();
/**
*
* Filter by value. Multiple values are OR-ed. Empty list results in no filter.
*
*
* repeated .google.protobuf.Value values = 8;
*/
com.google.protobuf.Value getValues(int index);
/**
*
* Filter by value. Multiple values are OR-ed. Empty list results in no filter.
*
*
* repeated .google.protobuf.Value values = 8;
*/
int getValuesCount();
/**
*
* Filter by value. Multiple values are OR-ed. Empty list results in no filter.
*
*
* repeated .google.protobuf.Value values = 8;
*/
java.util.List extends com.google.protobuf.ValueOrBuilder>
getValuesOrBuilderList();
/**
*
* Filter by value. Multiple values are OR-ed. Empty list results in no filter.
*
*
* repeated .google.protobuf.Value values = 8;
*/
com.google.protobuf.ValueOrBuilder getValuesOrBuilder(
int index);
}