Package com.google.cloud.dataplex.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)
Jobs under a given task.int
getJobsCount()
Jobs under a given task.List<Job>
getJobsList()
Jobs under a given task.JobOrBuilder
getJobsOrBuilder(int index)
Jobs under a given task.List<? extends JobOrBuilder>
getJobsOrBuilderList()
Jobs under a given task.String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.-
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()
Jobs under a given task.
repeated .google.cloud.dataplex.v1.Job jobs = 1;
-
getJobs
Job getJobs(int index)
Jobs under a given task.
repeated .google.cloud.dataplex.v1.Job jobs = 1;
-
getJobsCount
int getJobsCount()
Jobs under a given task.
repeated .google.cloud.dataplex.v1.Job jobs = 1;
-
getJobsOrBuilderList
List<? extends JobOrBuilder> getJobsOrBuilderList()
Jobs under a given task.
repeated .google.cloud.dataplex.v1.Job jobs = 1;
-
getJobsOrBuilder
JobOrBuilder getJobsOrBuilder(int index)
Jobs under a given task.
repeated .google.cloud.dataplex.v1.Job jobs = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-