deleteTierMapping

Back to index

Summary

Deletes a tier mapping from a tier map.
projectName
Stringrequired
The name for the project that must be unique among all projects.
applicationName
Stringrequired
The name of the application.
environmentProjectName
Stringrequired
The name of the environment's project name.
environmentName
Stringrequired
The name of the environment.
applicationTierName
Stringrequired
The name of the application tier.
applicationEntityRevisionId
UUIDoptional
The revision ID of the versioned object.

Usage

Perl

$cmdr->deleteTierMapping( "test-projectName", # projectName "test-applicationName", # applicationName "test-environmentProjectName", # environmentProjectName "test-environmentName", # environmentName "test-applicationTierName" # applicationTierName # optionals );

ectool

ectool deleteTierMapping \ "test-projectName" `# projectName` \ "test-applicationName" `# applicationName` \ "test-environmentProjectName" `# environmentProjectName` \ "test-environmentName" `# environmentName` \ "test-applicationTierName" `# applicationTierName` \ # optionals

Examples

Perl

$cmdr->deleteTierMapping("Default", "Deploy", "Q4 Summary", "PROD", "Config");

ectool

ectool deleteTierMapping "Default" "Deploy" "Q4 Summary" "PROD" "Config"