deletePipeline

Back to index

Summary

Deletes a pipeline in a project.
projectName
Stringrequired
The name for the project that must be unique among all projects.
pipelineName
Stringrequired
The name of the pipeline.
releaseName
Stringoptional
The name of the release.

Usage

Perl

$cmdr->deletePipeline( "test-projectName", # projectName "test-pipelineName" # pipelineName # optionals );

ectool

ectool deletePipeline \ "test-projectName" `# projectName` \ "test-pipelineName" `# pipelineName` \ # optionals

Examples

Perl

$cmdr->deletePipeline("Default", "Web Server Image");

ectool

ectool deletePipeline "Default" "Web Server Image"