getComponentsInApplicationTier

Back to index

Summary

Retrieves the list of components in 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.
applicationEntityRevisionId
UUIDoptional
The revision ID of the versioned object.
includeArtifactDetail
Booleanoptional
Retrieves artifact name and version as part of component response.

Usage

Perl

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

ectool

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

Examples

Perl

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

ectool

ectool getComponentsInApplicationTier "Default" "Deploy snapshot" "AWS" --applicationEntityRevisionId 4fa765dd-73f1-11e3-b67e-b0a420524153