Interface ListModelVersionsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListModelVersionsResponse
,ListModelVersionsResponse.Builder
public interface ListModelVersionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Model
getModels(int index)
List of Model versions in the requested page.int
getModelsCount()
List of Model versions in the requested page.List<Model>
getModelsList()
List of Model versions in the requested page.ModelOrBuilder
getModelsOrBuilder(int index)
List of Model versions in the requested page.List<? extends ModelOrBuilder>
getModelsOrBuilderList()
List of Model versions in the requested page.String
getNextPageToken()
A token to retrieve the next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token to retrieve the 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 Model versions in the requested page. In the returned Model name field, version ID instead of regvision tag will be included.
repeated .google.cloud.aiplatform.v1beta1.Model models = 1;
-
getModels
Model getModels(int index)
List of Model versions in the requested page. In the returned Model name field, version ID instead of regvision tag will be included.
repeated .google.cloud.aiplatform.v1beta1.Model models = 1;
-
getModelsCount
int getModelsCount()
List of Model versions in the requested page. In the returned Model name field, version ID instead of regvision tag will be included.
repeated .google.cloud.aiplatform.v1beta1.Model models = 1;
-
getModelsOrBuilderList
List<? extends ModelOrBuilder> getModelsOrBuilderList()
List of Model versions in the requested page. In the returned Model name field, version ID instead of regvision tag will be included.
repeated .google.cloud.aiplatform.v1beta1.Model models = 1;
-
getModelsOrBuilder
ModelOrBuilder getModelsOrBuilder(int index)
List of Model versions in the requested page. In the returned Model name field, version ID instead of regvision tag will be included.
repeated .google.cloud.aiplatform.v1beta1.Model models = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. Pass to [ListModelVersionsRequest.page_token][google.cloud.aiplatform.v1beta1.ListModelVersionsRequest.page_token] to obtain that page.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve the next page of results. Pass to [ListModelVersionsRequest.page_token][google.cloud.aiplatform.v1beta1.ListModelVersionsRequest.page_token] to obtain that page.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-