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 CustomJob
getCustomJobs(int index)
List of CustomJobs in the requested page.int
getCustomJobsCount()
List of CustomJobs in the requested page.List<CustomJob>
getCustomJobsList()
List of CustomJobs in the requested page.CustomJobOrBuilder
getCustomJobsOrBuilder(int index)
List of CustomJobs in the requested page.List<? extends CustomJobOrBuilder>
getCustomJobsOrBuilderList()
List of CustomJobs 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
-
getCustomJobsList
List<CustomJob> getCustomJobsList()
List of CustomJobs in the requested page.
repeated .google.cloud.aiplatform.v1beta1.CustomJob custom_jobs = 1;
-
getCustomJobs
CustomJob getCustomJobs(int index)
List of CustomJobs in the requested page.
repeated .google.cloud.aiplatform.v1beta1.CustomJob custom_jobs = 1;
-
getCustomJobsCount
int getCustomJobsCount()
List of CustomJobs in the requested page.
repeated .google.cloud.aiplatform.v1beta1.CustomJob custom_jobs = 1;
-
getCustomJobsOrBuilderList
List<? extends CustomJobOrBuilder> getCustomJobsOrBuilderList()
List of CustomJobs in the requested page.
repeated .google.cloud.aiplatform.v1beta1.CustomJob custom_jobs = 1;
-
getCustomJobsOrBuilder
CustomJobOrBuilder getCustomJobsOrBuilder(int index)
List of CustomJobs in the requested page.
repeated .google.cloud.aiplatform.v1beta1.CustomJob custom_jobs = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. Pass to [ListCustomJobsRequest.page_token][google.cloud.aiplatform.v1beta1.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.v1beta1.ListCustomJobsRequest.page_token] to obtain that page.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-