getPipelineStageRuntimeTasks

Back to index

Summary

Retrieves the list of pipeline stage tasks and the details about them that are displayed in the pipeline run view.
flowRuntimeId
UUIDrequired
The ID of the flow runtime.
firstResult
Integeroptional
Result pagination: the first row to return.
maxResults
Integeroptional
Result pagination: the number of rows to return.
sortKey
Stringoptional
How to sort the results.
sortOrder
Stringoptional
Specifies the order to sort the results.
Possible values: "ascending", "descending"
stageName
Stringoptional
The name of the stage.
stageRunNumber
Integeroptional
The stage run number.

Usage

Perl

$cmdr->getPipelineStageRuntimeTasks( "test-flowRuntimeId" # flowRuntimeId # optionals );

ectool

ectool getPipelineStageRuntimeTasks \ "test-flowRuntimeId" `# flowRuntimeId` \ # optionals

Examples

Perl

$cmdr->getPipelineStageRuntimeTasks(4fa765dd-73f1-11e3-b67e-b0a420524165, {firstResult => 2, maxResults => 200});

ectool

ectool getPipelineStageRuntimeTasks 4fa765dd-73f1-11e3-b67e-b0a420524165 --firstResult 2 --maxResults 200