getStage

Back to index

Summary

Retrieves a stage by its name.
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.
timeZone
Stringoptional
The time zone to use when interpreting times.

Usage

Perl

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

ectool

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

Examples

Perl

$cmdr->getStage("Default", "Preflight", {pipelineName => "Final"});

ectool

ectool getStage "Default" "Preflight" --pipelineName "Final"