public class ListDependentTasksResponse extends Object
Response from a listDependentTasks request.
See https://schemas.taskcluster.net/queue/v1/list-dependent-tasks-response.json#
| Modifier and Type | Field and Description |
|---|---|
String |
continuationToken
Opaque
continuationToken to be given as query-string option to get the next set of dependent tasks. |
String |
taskId
Identifier for the task whose dependents are being listed.
|
TaskDefinitionAndStatus[] |
tasks
List of tasks that have
taskId in the task.dependencies property. |
| Constructor and Description |
|---|
ListDependentTasksResponse() |
public String continuationToken
Opaque continuationToken to be given as query-string option to get the next set of dependent tasks. This property is only present if another request is necessary to fetch all results. In practice the next request with a continuationToken may not return additional results, but it can. Thus, you can only be sure to have all the results if you’ve called listDependentTasks with continuationToken until you get a result without a continuationToken.
public String taskId
Identifier for the task whose dependents are being listed.
Syntax: ^[A-Za-z0-9_-]{8}[Q-T][A-Za-z0-9_-][CGKOSWaeimquy26-][A-Za-z0-9_-]{10}[AQgw]$
See https://schemas.taskcluster.net/queue/v1/list-dependent-tasks-response.json#/properties/taskId
public TaskDefinitionAndStatus[] tasks
List of tasks that have taskId in the task.dependencies property.
See https://schemas.taskcluster.net/queue/v1/list-dependent-tasks-response.json#/properties/tasks
Copyright © 2014–2018 Mozilla. All rights reserved.