Package com.google.cloud.run.v2
Interface ListTasksResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListTasksResponse
,ListTasksResponse.Builder
public interface ListTasksResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
A token indicating there are more items than page_size.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token indicating there are more items than page_size.Task
getTasks(int index)
The resulting list of Tasks.int
getTasksCount()
The resulting list of Tasks.List<Task>
getTasksList()
The resulting list of Tasks.TaskOrBuilder
getTasksOrBuilder(int index)
The resulting list of Tasks.List<? extends TaskOrBuilder>
getTasksOrBuilderList()
The resulting list of Tasks.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTasksList
List<Task> getTasksList()
The resulting list of Tasks.
repeated .google.cloud.run.v2.Task tasks = 1;
-
getTasks
Task getTasks(int index)
The resulting list of Tasks.
repeated .google.cloud.run.v2.Task tasks = 1;
-
getTasksCount
int getTasksCount()
The resulting list of Tasks.
repeated .google.cloud.run.v2.Task tasks = 1;
-
getTasksOrBuilderList
List<? extends TaskOrBuilder> getTasksOrBuilderList()
The resulting list of Tasks.
repeated .google.cloud.run.v2.Task tasks = 1;
-
getTasksOrBuilder
TaskOrBuilder getTasksOrBuilder(int index)
The resulting list of Tasks.
repeated .google.cloud.run.v2.Task tasks = 1;
-
getNextPageToken
String getNextPageToken()
A token indicating there are more items than page_size. Use it in the next ListTasks request to continue.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token indicating there are more items than page_size. Use it in the next ListTasks request to continue.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-