getRelease

Back to index

Summary

Retrieves a release by name.
projectName
Stringrequired
The name for the project that must be unique among all projects.
releaseName
Stringrequired
The name of the release.
releaseFlowRuntimeMappings
Mapoptional
Map of releaseId and flowRuntimeId.

Usage

Perl

$cmdr->getRelease( "test-projectName", # projectName "test-releaseName" # releaseName # optionals );

ectool

ectool getRelease \ "test-projectName" `# projectName` \ "test-releaseName" `# releaseName` \ # optionals

Examples

Perl

$cmdr->getRelease("Default", "Production");

ectool

ectool getRelease "Default" "Production"