Interface ListNasJobsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListNasJobsResponse,ListNasJobsResponse.Builder
public interface ListNasJobsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NasJobgetNasJobs(int index)List of NasJobs in the requested page.intgetNasJobsCount()List of NasJobs in the requested page.List<NasJob>getNasJobsList()List of NasJobs in the requested page.NasJobOrBuildergetNasJobsOrBuilder(int index)List of NasJobs in the requested page.List<? extends NasJobOrBuilder>getNasJobsOrBuilderList()List of NasJobs 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
-
getNasJobsList
List<NasJob> getNasJobsList()
List of NasJobs in the requested page. [NasJob.nas_job_output][google.cloud.aiplatform.v1beta1.NasJob.nas_job_output] of the jobs will not be returned.
repeated .google.cloud.aiplatform.v1beta1.NasJob nas_jobs = 1;
-
getNasJobs
NasJob getNasJobs(int index)
List of NasJobs in the requested page. [NasJob.nas_job_output][google.cloud.aiplatform.v1beta1.NasJob.nas_job_output] of the jobs will not be returned.
repeated .google.cloud.aiplatform.v1beta1.NasJob nas_jobs = 1;
-
getNasJobsCount
int getNasJobsCount()
List of NasJobs in the requested page. [NasJob.nas_job_output][google.cloud.aiplatform.v1beta1.NasJob.nas_job_output] of the jobs will not be returned.
repeated .google.cloud.aiplatform.v1beta1.NasJob nas_jobs = 1;
-
getNasJobsOrBuilderList
List<? extends NasJobOrBuilder> getNasJobsOrBuilderList()
List of NasJobs in the requested page. [NasJob.nas_job_output][google.cloud.aiplatform.v1beta1.NasJob.nas_job_output] of the jobs will not be returned.
repeated .google.cloud.aiplatform.v1beta1.NasJob nas_jobs = 1;
-
getNasJobsOrBuilder
NasJobOrBuilder getNasJobsOrBuilder(int index)
List of NasJobs in the requested page. [NasJob.nas_job_output][google.cloud.aiplatform.v1beta1.NasJob.nas_job_output] of the jobs will not be returned.
repeated .google.cloud.aiplatform.v1beta1.NasJob nas_jobs = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. Pass to [ListNasJobsRequest.page_token][google.cloud.aiplatform.v1beta1.ListNasJobsRequest.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 [ListNasJobsRequest.page_token][google.cloud.aiplatform.v1beta1.ListNasJobsRequest.page_token] to obtain that page.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-