removeResourceFromEnvironmentTier

Back to index

Summary

Removes a resource from the specified environment tier.
resourceName
Stringrequired
Name for the resource; must be unique among all resources.
projectName
Stringrequired
The name for the project that must be unique among all projects.
environmentName
Stringrequired
The name of the environment.
environmentTierName
Stringrequired
Name for the environment tier; must be unique among all tiers for the environment.

Usage

Perl

$cmdr->removeResourceFromEnvironmentTier( "test-resourceName", # resourceName "test-projectName", # projectName "test-environmentName", # environmentName "test-environmentTierName" # environmentTierName );

ectool

ectool removeResourceFromEnvironmentTier \ "test-resourceName" `# resourceName` \ "test-projectName" `# projectName` \ "test-environmentName" `# environmentName` \ "test-environmentTierName" `# environmentTierName`

Examples

Perl

$cmdr->removeResourceFromEnvironmentTier("Web server", "Default", "QA", "Tomcat");

ectool

ectool removeResourceFromEnvironmentTier "Web server" "Default" "QA" "Tomcat"