abortAllPipelineRuns

Back to index

Summary

Aborts all pipeline runs associated with a release.
projectName
Stringrequired
The name for the project that must be unique among all projects.
force
Booleanoptional
If true running tasks are force aborted.
pipelineName
Stringoptional
The name of the pipeline.
releaseName
Stringoptional
The name of the release.

Usage

Perl

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

ectool

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

Examples

Perl

$cmdr->abortAllPipelineRuns("Production", {force => true, pipelineName => "banking"});

ectool

ectool abortAllPipelineRuns "Production" --force true --pipelineName "banking"