com.clarifai.grpc.api.ListKeysRequestOrBuilder 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 ListKeysRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.ListKeysRequest)
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();
/**
*
* (optional URL parameter) The page number. Pagination is used to split the results into chunks.
* Defaults to 1.
*
*
* uint32 page = 2;
* @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 = 3;
* @return The perPage.
*/
int getPerPage();
/**
* bool not_expired = 4;
* @return The notExpired.
*/
boolean getNotExpired();
/**
* repeated string scopes = 5;
* @return A list containing the scopes.
*/
java.util.List
getScopesList();
/**
* repeated string scopes = 5;
* @return The count of scopes.
*/
int getScopesCount();
/**
* repeated string scopes = 5;
* @param index The index of the element to return.
* @return The scopes at the given index.
*/
java.lang.String getScopes(int index);
/**
* repeated string scopes = 5;
* @param index The index of the value to return.
* @return The bytes of the scopes at the given index.
*/
com.google.protobuf.ByteString
getScopesBytes(int index);
/**
* repeated string endpoints = 6;
* @return A list containing the endpoints.
*/
java.util.List
getEndpointsList();
/**
* repeated string endpoints = 6;
* @return The count of endpoints.
*/
int getEndpointsCount();
/**
* repeated string endpoints = 6;
* @param index The index of the element to return.
* @return The endpoints at the given index.
*/
java.lang.String getEndpoints(int index);
/**
* repeated string endpoints = 6;
* @param index The index of the value to return.
* @return The bytes of the endpoints at the given index.
*/
com.google.protobuf.ByteString
getEndpointsBytes(int index);
}