deleteStage

Back to index

Summary

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

Usage

Perl

$cmdr->deleteStage( "test-projectName", # projectName "test-stageName" # stageName # optionals );

ectool

ectool deleteStage \ "test-projectName" `# projectName` \ "test-stageName" `# stageName` \ # optionals

Examples

Perl

$cmdr->deleteStage("Default", "PROD", {pipelineName => "Q2 Summary"});

ectool

ectool deleteStage "Default" "PROD" --pipelineName "Q2 Summary"