getWaitingTasks

Back to index

Summary

Retrieves a list of all stage tasks that are waiting on a manual approval or waiting for manual retry tasks in a pipeline run view.
flowRuntimeId
UUIDrequired
The ID of the flow runtime.
stageName
Stringrequired
The name of the stage.
taskName
Stringoptional
The name of the deployer or group task.

Usage

Perl

$cmdr->getWaitingTasks( "test-flowRuntimeId", # flowRuntimeId "test-stageName" # stageName # optionals );

ectool

ectool getWaitingTasks \ "test-flowRuntimeId" `# flowRuntimeId` \ "test-stageName" `# stageName` \ # optionals

Examples

Perl

$cmdr->getWaitingTasks("5da765dd-73f1-11e3-b67e-b0a420524153", "PROD", {sortKey => start, sortOrder => ascending});

ectool

ectool getWaitingTasks "5da765dd-73f1-11e3-b67e-b0a420524153" "PROD" --sortKey start --sortOrder ascending