Interface ListModelEvaluationSlicesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListModelEvaluationSlicesResponse
,ListModelEvaluationSlicesResponse.Builder
public interface ListModelEvaluationSlicesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModelEvaluationSlice
getModelEvaluationSlices(int index)
List of ModelEvaluations in the requested page.int
getModelEvaluationSlicesCount()
List of ModelEvaluations in the requested page.List<ModelEvaluationSlice>
getModelEvaluationSlicesList()
List of ModelEvaluations in the requested page.ModelEvaluationSliceOrBuilder
getModelEvaluationSlicesOrBuilder(int index)
List of ModelEvaluations in the requested page.List<? extends ModelEvaluationSliceOrBuilder>
getModelEvaluationSlicesOrBuilderList()
List of ModelEvaluations 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
-
getModelEvaluationSlicesList
List<ModelEvaluationSlice> getModelEvaluationSlicesList()
List of ModelEvaluations in the requested page.
repeated .google.cloud.aiplatform.v1beta1.ModelEvaluationSlice model_evaluation_slices = 1;
-
getModelEvaluationSlices
ModelEvaluationSlice getModelEvaluationSlices(int index)
List of ModelEvaluations in the requested page.
repeated .google.cloud.aiplatform.v1beta1.ModelEvaluationSlice model_evaluation_slices = 1;
-
getModelEvaluationSlicesCount
int getModelEvaluationSlicesCount()
List of ModelEvaluations in the requested page.
repeated .google.cloud.aiplatform.v1beta1.ModelEvaluationSlice model_evaluation_slices = 1;
-
getModelEvaluationSlicesOrBuilderList
List<? extends ModelEvaluationSliceOrBuilder> getModelEvaluationSlicesOrBuilderList()
List of ModelEvaluations in the requested page.
repeated .google.cloud.aiplatform.v1beta1.ModelEvaluationSlice model_evaluation_slices = 1;
-
getModelEvaluationSlicesOrBuilder
ModelEvaluationSliceOrBuilder getModelEvaluationSlicesOrBuilder(int index)
List of ModelEvaluations in the requested page.
repeated .google.cloud.aiplatform.v1beta1.ModelEvaluationSlice model_evaluation_slices = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve next page of results. Pass to [ListModelEvaluationSlicesRequest.page_token][google.cloud.aiplatform.v1beta1.ListModelEvaluationSlicesRequest.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 [ListModelEvaluationSlicesRequest.page_token][google.cloud.aiplatform.v1beta1.ListModelEvaluationSlicesRequest.page_token] to obtain that page.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-