Interface ListIndexesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListIndexesResponse
,ListIndexesResponse.Builder
public interface ListIndexesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Index
getIndexes(int index)
List of indexes in the requested page.int
getIndexesCount()
List of indexes in the requested page.List<Index>
getIndexesList()
List of indexes in the requested page.IndexOrBuilder
getIndexesOrBuilder(int index)
List of indexes in the requested page.List<? extends IndexOrBuilder>
getIndexesOrBuilderList()
List of indexes in the requested page.String
getNextPageToken()
A token to retrieve next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token to retrieve next page of results.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIndexesList
List<Index> getIndexesList()
List of indexes in the requested page.
repeated .google.cloud.aiplatform.v1beta1.Index indexes = 1;
-
getIndexes
Index getIndexes(int index)
List of indexes in the requested page.
repeated .google.cloud.aiplatform.v1beta1.Index indexes = 1;
-
getIndexesCount
int getIndexesCount()
List of indexes in the requested page.
repeated .google.cloud.aiplatform.v1beta1.Index indexes = 1;
-
getIndexesOrBuilderList
List<? extends IndexOrBuilder> getIndexesOrBuilderList()
List of indexes in the requested page.
repeated .google.cloud.aiplatform.v1beta1.Index indexes = 1;
-
getIndexesOrBuilder
IndexOrBuilder getIndexesOrBuilder(int index)
List of indexes in the requested page.
repeated .google.cloud.aiplatform.v1beta1.Index indexes = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve next page of results. Pass to [ListIndexesRequest.page_token][google.cloud.aiplatform.v1beta1.ListIndexesRequest.page_token] to obtain that page.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve next page of results. Pass to [ListIndexesRequest.page_token][google.cloud.aiplatform.v1beta1.ListIndexesRequest.page_token] to obtain that page.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-