Package com.google.cloud.aiplatform.v1
Interface ListModelsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListModelsResponse,ListModelsResponse.Builder
public interface ListModelsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModelgetModels(int index)List of Models in the requested page.intgetModelsCount()List of Models in the requested page.List<Model>getModelsList()List of Models in the requested page.ModelOrBuildergetModelsOrBuilder(int index)List of Models in the requested page.List<? extends ModelOrBuilder>getModelsOrBuilderList()List of Models 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
-
getModelsList
List<Model> getModelsList()
List of Models in the requested page.
repeated .google.cloud.aiplatform.v1.Model models = 1;
-
getModels
Model getModels(int index)
List of Models in the requested page.
repeated .google.cloud.aiplatform.v1.Model models = 1;
-
getModelsCount
int getModelsCount()
List of Models in the requested page.
repeated .google.cloud.aiplatform.v1.Model models = 1;
-
getModelsOrBuilderList
List<? extends ModelOrBuilder> getModelsOrBuilderList()
List of Models in the requested page.
repeated .google.cloud.aiplatform.v1.Model models = 1;
-
getModelsOrBuilder
ModelOrBuilder getModelsOrBuilder(int index)
List of Models in the requested page.
repeated .google.cloud.aiplatform.v1.Model models = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve next page of results. Pass to [ListModelsRequest.page_token][google.cloud.aiplatform.v1.ListModelsRequest.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 [ListModelsRequest.page_token][google.cloud.aiplatform.v1.ListModelsRequest.page_token] to obtain that page.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-