getAllWaitingTasks

Back to index

Summary

Retrieves a list of all tasks across pipeline runs that are awaiting manual approval.
projectName
Stringrequired
Name for the project; must be unique among all projects.
flowRuntimeId
UUIDoptional
The ID of the flow runtime.
releaseName
Stringoptional
The name of the release.

Usage

Perl

$cmdr->getAllWaitingTasks( "test-projectName" # projectName # optionals );

ectool

ectool getAllWaitingTasks \ "test-projectName" `# projectName` \ # optionals

Examples

Perl

$cmdr->getAllWaitingTasks(projectName -> "proj1", {releaseName => "release1"});
$cmdr->getAllWaitingTasks(flowRuntimeId -> "dbdc2234-7322-11e9-b5c9-30e37a55bab4");

ectool

ectool getAllWaitingTasks --projectName "proj1" --releaseName "release1"
ectool getAllWaitingTasks --flowRuntimeId "dbdc2234-7322-11e9-b5c9-30e37a55bab4"