removeDeployerConfiguration

Back to index

Summary

Removes a deployer configuration associated with a deployer application.
projectName
Stringrequired
The name for the project that must be unique among all projects.
applicationName
Stringrequired
The name of the application.
stageName
Stringrequired
The name of the stage of a pipeline attached to a release if specified.
applicationProjectName
Stringoptional
The name of the project containing specified application. If not specified, it is defaulted to the release project name.
deployerConfigurationName
Stringoptional
The name of deployer configuration. If not specified, a system generated GUID is used.
deployerTaskName
Stringoptional
The name of the deployer task defined in the provided stage.
releaseName
Stringoptional
The name of the release.

Usage

Perl

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

ectool

ectool removeDeployerConfiguration \ "test-projectName" `# projectName` \ "test-applicationName" `# applicationName` \ "test-stageName" `# stageName` \ # optionals

Examples

Perl

$cmdr->removeDeployerConfiguration("Default", "Shopping Cart", "QA", {applicationProjectName => "Online store"});

ectool

ectool removeDeployerConfiguration "Default" "Shopping Cart" "QA" --applicationProjectName "Online store"