getApplicationTier

Back to index

Summary

Retrieves an application tier by name.
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.
applicationEntityRevisionId
UUIDoptional
The revision ID of the versioned object.

Usage

Perl

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

ectool

ectool getApplicationTier \ "test-projectName" `# projectName` \ "test-applicationName" `# applicationName` \ "test-applicationTierName" `# applicationTierName` \ # optionals

Examples

Perl

$cmdr->getApplicationTier("Default", "Deploy", "Tomcat", {applicationEntityRevisionId => "4fa765dd-73f1-11e3-b67e-b0a420524153"});

ectool

ectool getApplicationTier "Default" "Deploy" "Tomcat" --applicationEntityRevisionId 4fa765dd-73f1-11e3-b67e-b0a420524153