getEnvironmentInventoryItems

Back to index

Summary

Retrieves all inventory items for a given environment.
projectName
Stringrequired
The name for the project that must be unique among all projects.
environmentName
Stringrequired
The name of the environment.
includeResourceDetails
Booleanoptional
True to include resource details (default is false).

Usage

Perl

$cmdr->getEnvironmentInventoryItems( "test-projectName", # projectName "test-environmentName" # environmentName # optionals );

ectool

ectool getEnvironmentInventoryItems \ "test-projectName" `# projectName` \ "test-environmentName" `# environmentName` \ # optionals

Examples

Perl

$cmdr->getEnvironmentInventoryItems("Default", "Test Lab");

ectool

ectool getEnvironmentInventoryItems "Default" "Test Lab"