removeDeployerApplication

Back to index

Summary

Removes a deployer application for a release.
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 the specified application. If not specified, it defaults to the release project name.
deployerApplicationName
Stringoptional
The name of the deployer application.
releaseName
Stringoptional
The name of the release.

Usage

Perl

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

ectool

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

Examples

Perl

$cmdr->removeDeployerApplication("Default", "Verify versions", {applicationProjectName => "Software tools"});

ectool

ectool removeDeployerApplication "Default" "Verify versions" --applicationProjectName "Software tools"