Package com.google.cloud.aiplatform.v1
Interface ListCustomJobsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListCustomJobsResponse,ListCustomJobsResponse.Builder
public interface ListCustomJobsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomJobgetCustomJobs(int index)List of CustomJobs in the requested page.intgetCustomJobsCount()List of CustomJobs in the requested page.List<CustomJob>getCustomJobsList()List of CustomJobs in the requested page.CustomJobOrBuildergetCustomJobsOrBuilder(int index)List of CustomJobs in the requested page.List<? extends CustomJobOrBuilder>getCustomJobsOrBuilderList()List of CustomJobs in the requested page.StringgetNextPageToken()A token to retrieve the next page of results.com.google.protobuf.ByteStringgetNextPageTokenBytes()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
-
getCustomJobsList
List<CustomJob> getCustomJobsList()
List of CustomJobs in the requested page.
repeated .google.cloud.aiplatform.v1.CustomJob custom_jobs = 1;
-
getCustomJobs
CustomJob getCustomJobs(int index)
List of CustomJobs in the requested page.
repeated .google.cloud.aiplatform.v1.CustomJob custom_jobs = 1;
-
getCustomJobsCount
int getCustomJobsCount()
List of CustomJobs in the requested page.
repeated .google.cloud.aiplatform.v1.CustomJob custom_jobs = 1;
-
getCustomJobsOrBuilderList
List<? extends CustomJobOrBuilder> getCustomJobsOrBuilderList()
List of CustomJobs in the requested page.
repeated .google.cloud.aiplatform.v1.CustomJob custom_jobs = 1;
-
getCustomJobsOrBuilder
CustomJobOrBuilder getCustomJobsOrBuilder(int index)
List of CustomJobs in the requested page.
repeated .google.cloud.aiplatform.v1.CustomJob custom_jobs = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. Pass to [ListCustomJobsRequest.page_token][google.cloud.aiplatform.v1.ListCustomJobsRequest.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 [ListCustomJobsRequest.page_token][google.cloud.aiplatform.v1.ListCustomJobsRequest.page_token] to obtain that page.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-