Interface ListBatchPredictionJobsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListBatchPredictionJobsResponse
,ListBatchPredictionJobsResponse.Builder
public interface ListBatchPredictionJobsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchPredictionJob
getBatchPredictionJobs(int index)
List of BatchPredictionJobs in the requested page.int
getBatchPredictionJobsCount()
List of BatchPredictionJobs in the requested page.List<BatchPredictionJob>
getBatchPredictionJobsList()
List of BatchPredictionJobs in the requested page.BatchPredictionJobOrBuilder
getBatchPredictionJobsOrBuilder(int index)
List of BatchPredictionJobs in the requested page.List<? extends BatchPredictionJobOrBuilder>
getBatchPredictionJobsOrBuilderList()
List of BatchPredictionJobs 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
-
getBatchPredictionJobsList
List<BatchPredictionJob> getBatchPredictionJobsList()
List of BatchPredictionJobs in the requested page.
repeated .google.cloud.aiplatform.v1beta1.BatchPredictionJob batch_prediction_jobs = 1;
-
getBatchPredictionJobs
BatchPredictionJob getBatchPredictionJobs(int index)
List of BatchPredictionJobs in the requested page.
repeated .google.cloud.aiplatform.v1beta1.BatchPredictionJob batch_prediction_jobs = 1;
-
getBatchPredictionJobsCount
int getBatchPredictionJobsCount()
List of BatchPredictionJobs in the requested page.
repeated .google.cloud.aiplatform.v1beta1.BatchPredictionJob batch_prediction_jobs = 1;
-
getBatchPredictionJobsOrBuilderList
List<? extends BatchPredictionJobOrBuilder> getBatchPredictionJobsOrBuilderList()
List of BatchPredictionJobs in the requested page.
repeated .google.cloud.aiplatform.v1beta1.BatchPredictionJob batch_prediction_jobs = 1;
-
getBatchPredictionJobsOrBuilder
BatchPredictionJobOrBuilder getBatchPredictionJobsOrBuilder(int index)
List of BatchPredictionJobs in the requested page.
repeated .google.cloud.aiplatform.v1beta1.BatchPredictionJob batch_prediction_jobs = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. Pass to [ListBatchPredictionJobsRequest.page_token][google.cloud.aiplatform.v1beta1.ListBatchPredictionJobsRequest.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 [ListBatchPredictionJobsRequest.page_token][google.cloud.aiplatform.v1beta1.ListBatchPredictionJobsRequest.page_token] to obtain that page.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-