Package com.google.cloud.aiplatform.v1
Interface ListIndexEndpointsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListIndexEndpointsResponse,ListIndexEndpointsResponse.Builder
public interface ListIndexEndpointsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IndexEndpointgetIndexEndpoints(int index)List of IndexEndpoints in the requested page.intgetIndexEndpointsCount()List of IndexEndpoints in the requested page.List<IndexEndpoint>getIndexEndpointsList()List of IndexEndpoints in the requested page.IndexEndpointOrBuildergetIndexEndpointsOrBuilder(int index)List of IndexEndpoints in the requested page.List<? extends IndexEndpointOrBuilder>getIndexEndpointsOrBuilderList()List of IndexEndpoints in the requested page.StringgetNextPageToken()A token to retrieve next page of results.com.google.protobuf.ByteStringgetNextPageTokenBytes()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
-
getIndexEndpointsList
List<IndexEndpoint> getIndexEndpointsList()
List of IndexEndpoints in the requested page.
repeated .google.cloud.aiplatform.v1.IndexEndpoint index_endpoints = 1;
-
getIndexEndpoints
IndexEndpoint getIndexEndpoints(int index)
List of IndexEndpoints in the requested page.
repeated .google.cloud.aiplatform.v1.IndexEndpoint index_endpoints = 1;
-
getIndexEndpointsCount
int getIndexEndpointsCount()
List of IndexEndpoints in the requested page.
repeated .google.cloud.aiplatform.v1.IndexEndpoint index_endpoints = 1;
-
getIndexEndpointsOrBuilderList
List<? extends IndexEndpointOrBuilder> getIndexEndpointsOrBuilderList()
List of IndexEndpoints in the requested page.
repeated .google.cloud.aiplatform.v1.IndexEndpoint index_endpoints = 1;
-
getIndexEndpointsOrBuilder
IndexEndpointOrBuilder getIndexEndpointsOrBuilder(int index)
List of IndexEndpoints in the requested page.
repeated .google.cloud.aiplatform.v1.IndexEndpoint index_endpoints = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve next page of results. Pass to [ListIndexEndpointsRequest.page_token][google.cloud.aiplatform.v1.ListIndexEndpointsRequest.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 [ListIndexEndpointsRequest.page_token][google.cloud.aiplatform.v1.ListIndexEndpointsRequest.page_token] to obtain that page.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-