Package com.google.cloud.scheduler.v1
Interface ListJobsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListJobsResponse
,ListJobsResponse.Builder
public interface ListJobsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Job
getJobs(int index)
The list of jobs.int
getJobsCount()
The list of jobs.List<Job>
getJobsList()
The list of jobs.JobOrBuilder
getJobsOrBuilder(int index)
The list of jobs.List<? extends JobOrBuilder>
getJobsOrBuilderList()
The list of jobs.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
-
getJobsList
List<Job> getJobsList()
The list of jobs.
repeated .google.cloud.scheduler.v1.Job jobs = 1;
-
getJobs
Job getJobs(int index)
The list of jobs.
repeated .google.cloud.scheduler.v1.Job jobs = 1;
-
getJobsCount
int getJobsCount()
The list of jobs.
repeated .google.cloud.scheduler.v1.Job jobs = 1;
-
getJobsOrBuilderList
List<? extends JobOrBuilder> getJobsOrBuilderList()
The list of jobs.
repeated .google.cloud.scheduler.v1.Job jobs = 1;
-
getJobsOrBuilder
JobOrBuilder getJobsOrBuilder(int index)
The list of jobs.
repeated .google.cloud.scheduler.v1.Job jobs = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve next page of results. Pass this value in the [page_token][google.cloud.scheduler.v1.ListJobsRequest.page_token] field in the subsequent call to [ListJobs][google.cloud.scheduler.v1.CloudScheduler.ListJobs] to retrieve the next page of results. If this is empty it indicates that there are no more results through which to paginate. The page token is valid for only 2 hours.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve next page of results. Pass this value in the [page_token][google.cloud.scheduler.v1.ListJobsRequest.page_token] field in the subsequent call to [ListJobs][google.cloud.scheduler.v1.CloudScheduler.ListJobs] to retrieve the next page of results. If this is empty it indicates that there are no more results through which to paginate. The page token is valid for only 2 hours.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-