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)
List of jobs in the specified region.int
getJobsCount()
List of jobs in the specified region.List<Job>
getJobsList()
List of jobs in the specified region.JobOrBuilder
getJobsOrBuilder(int index)
List of jobs in the specified region.List<? extends JobOrBuilder>
getJobsOrBuilderList()
List of jobs in the specified region.String
getNextPageToken()
The pagination token.com.google.protobuf.ByteString
getNextPageTokenBytes()
The pagination token.String
getUnreachable(int index)
List of regions that could not be reached.com.google.protobuf.ByteString
getUnreachableBytes(int index)
List of regions that could not be reached.int
getUnreachableCount()
List of regions that could not be reached.List<String>
getUnreachableList()
List of regions that could not be reached.-
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()
List of jobs in the specified region.
repeated .google.cloud.video.transcoder.v1.Job jobs = 1;
-
getJobs
Job getJobs(int index)
List of jobs in the specified region.
repeated .google.cloud.video.transcoder.v1.Job jobs = 1;
-
getJobsCount
int getJobsCount()
List of jobs in the specified region.
repeated .google.cloud.video.transcoder.v1.Job jobs = 1;
-
getJobsOrBuilderList
List<? extends JobOrBuilder> getJobsOrBuilderList()
List of jobs in the specified region.
repeated .google.cloud.video.transcoder.v1.Job jobs = 1;
-
getJobsOrBuilder
JobOrBuilder getJobsOrBuilder(int index)
List of jobs in the specified region.
repeated .google.cloud.video.transcoder.v1.Job jobs = 1;
-
getNextPageToken
String getNextPageToken()
The pagination token.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The pagination token.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
getUnreachableList
List<String> getUnreachableList()
List of regions that could not be reached.
repeated string unreachable = 3;
- Returns:
- A list containing the unreachable.
-
getUnreachableCount
int getUnreachableCount()
List of regions that could not be reached.
repeated string unreachable = 3;
- Returns:
- The count of unreachable.
-
getUnreachable
String getUnreachable(int index)
List of regions that could not be reached.
repeated string unreachable = 3;
- Parameters:
index
- The index of the element to return.- Returns:
- The unreachable at the given index.
-
getUnreachableBytes
com.google.protobuf.ByteString getUnreachableBytes(int index)
List of regions that could not be reached.
repeated string unreachable = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the unreachable at the given index.
-
-