attachPipelineRun

Back to index

Summary

Adds a pipeline run to a release with a status of running or planning; pipeline runs cannot be attached to completed releases.
projectName
Stringrequired
The name for the project that must be unique among all projects.
flowRuntimeId
UUIDoptional
The ID of the pipeline run to attach.
releaseName
Stringoptional
The name of the release.

Usage

Perl

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

ectool

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

Examples

Perl

$cmdr->attachPipelineRun("Default", flowRuntimeId => e9bebbe3-c087-11e9-8bf5-001c42c3ce23, releaseName => AugustRelease);

ectool

ectool attachPipelineRun "Default" --flowRuntimeId e9bebbe3-c087-11e9-8bf5-001c42c3ce23 --releaseName "AugustRelease"