addComponentToApplicationTier

Back to index

Summary

Adds the specified component to the specified application tier.
projectName
Stringrequired
The name for the project that must be unique among all projects.
applicationName
Stringrequired
The name of the application.
applicationTierName
Stringrequired
Name of the tier; must be unique within the application.
componentName
Stringrequired
Name of the component.
componentProjectName
Stringoptional
Project name of the component.

Usage

Perl

$cmdr->addComponentToApplicationTier( "test-projectName", # projectName "test-applicationName", # applicationName "test-applicationTierName", # applicationTierName "test-componentName" # componentName # optionals );

ectool

ectool addComponentToApplicationTier \ "test-projectName" `# projectName` \ "test-applicationName" `# applicationName` \ "test-applicationTierName" `# applicationTierName` \ "test-componentName" `# componentName` \ # optionals

Examples

Perl

$cmdr->addComponentToApplicationTier("default", "Take snapshot", "Web server", "VCScomponent");

ectool

ectool addComponentToApplicationTier "default" "Take snapshot" "Web server" "VCScomponent"