getDeployerApplication

Back to index

Summary

Retrieves the application used in the release by name.
projectName
Stringrequired
The name for the project that must be unique among all projects.
applicationName
Stringrequired
The name of the application.
applicationProjectName
Stringoptional
The name of the project containing specified application. If not specified, it is defaulted to the release project name.
releaseName
Stringoptional
The name of the release.

Usage

Perl

$cmdr->getDeployerApplication( "test-projectName", # projectName "test-applicationName" # applicationName # optionals );

ectool

ectool getDeployerApplication \ "test-projectName" `# projectName` \ "test-applicationName" `# applicationName` \ # optionals

Examples

Perl

$cmdr->getDeployerApplication("Default", "Verify versions", {applicationProjectName => "Quarterly Summaries"});

ectool

ectool getDeployerApplication "Default" "Verify versions" --applicationProjectName "Quarterly Summaries"