addResourcesToPool

Back to index

Summary

Adds resources to the specified resource pool (a named group of resources).
resourcePoolName
Stringrequired
Name for the resource pool; must be unique among all resource pools.
resourceNames
Collectionoptional
List of resources to add/remove from the pool.

Usage

Perl

$cmdr->addResourcesToPool( "test-resourcePoolName" # resourcePoolName # optionals );

ectool

ectool addResourcesToPool \ "test-resourcePoolName" `# resourcePoolName` \ # optionals

Examples

Perl

$cmdr->addResourcesToPool("Test Station 1", {resourceNames => ["Server1", "Server2", "Server3"]});

ectool

ectool addResourcesToPool "Test Station 1" --resourceNames Server1 Server2 Server3