removeComponentFromApplicationTier

Back to index

Summary

Removes the specified component from an 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->removeComponentFromApplicationTier( "test-projectName", # projectName "test-applicationName", # applicationName "test-applicationTierName", # applicationTierName "test-componentName" # componentName # optionals );

ectool

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

Examples

Perl

$cmdr->removeComponentFromApplicationTier("Default", "Deploy", "Config", "WAR file", {componentProjectName => "Server Setup"});

ectool

ectool removeComponentFromApplicationTier "Default" "Deploy" "Config" "WAR file" --componentProjectName "Server Setup"