getPipelineStageRuntimeDeployerTasks

Back to index

Summary

Retrieves the list of deployer tasks and their details to be displayed in CloudBees CD/RO Pipeline Run Details page.
flowRuntimeId
UUIDrequired
The ID of the flow runtime.
stageName
Stringrequired
The name of the stage.
taskName
Stringrequired
The name of the deployer task.
firstResult
Integeroptional
Result pagination: the first row to return.
groupRunNumber
Integeroptional
The group run number.
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"
stageRunNumber
Integeroptional
The stage run number.
taskRunNumber
Integeroptional
The task run number.

Usage

Perl

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

ectool

ectool getPipelineStageRuntimeDeployerTasks \ "test-flowRuntimeId" `# flowRuntimeId` \ "test-stageName" `# stageName` \ "test-taskName" `# taskName` \ # optionals

Examples

Perl

$cmdr->getPipelineStageRuntimeDeployerTasks(4fa765dd-73f1-11e3-b67e-b0a420524165, "PROD", "Deploy WAR file", {firstResult => 2, maxResults => 200});

ectool

ectool getPipelineStageRuntimeDeployerTasks 4fa765dd-73f1-11e3-b67e-b0a420524165 "PROD" "Deploy WAR file" --firstResult 2 --maxResults 200