Back to index
Summary
Retrieves the list of deployer tasks and their details to be displayed in CloudBees CD/RO Pipeline Run Details page.flowRuntimeIdStringrequiredThe ID of the flow runtime. stageNameStringrequiredThe name of the stage. taskNameStringrequiredThe name of the deployer task. firstResultIntegeroptionalResult pagination: the first row to return. groupRunNumberIntegeroptionalThe group run number. maxResultsIntegeroptionalResult pagination: the number of rows to return. sortKeyStringoptionalHow to sort the results. sortOrderStringoptionalSpecifies the order to sort the results. Possible values: "ascending" , "descending" stageRunNumberIntegeroptionalThe stage run number. taskRunNumberIntegeroptionalThe task run number. |
Usage
Groovy
import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.getPipelineStageRuntimeDeployerTasks( flowRuntimeId: "test-flowRuntimeId", stageName: "test-stageName", taskName: "test-taskName" /* optional arguments */ )