getDeployerConfiguration

Back to index

Summary

Retrieves a deployer configuration.
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->getDeployerConfiguration( "test-projectName", # projectName "test-applicationName", # applicationName "test-stageName" # stageName # optionals );

ectool

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

Examples

Perl

$cmdr->getDeployerConfiguration("Default", "Shopping Cart", "QA", {applicationProjectName => "Quarterly Summaries"});

ectool

ectool getDeployerConfiguration "Default" "Shopping Cart" "QA" --applicationProjectName "Quarterly Summaries"