PowerCLI Reference

Get-ResourcePool

Synopsis

This cmdlet retrieves the resource pools available on a vCenter Server system.

Syntax

Get-ResourcePool -Id <String[]> [-Server <VIServer[]>] [<CommonParameters>]

Get-ResourcePool [[-Name] <String[]>] [-Location <VIContainer[]>] [-NoRecursion] [-Server <VIServer[]>] [-Tag <Tag[]>] [<CommonParameters>]

Get-ResourcePool [[-Name] <String[]>] [-Server <VIServer[]>] [-Tag <Tag[]>] -VM <VirtualMachine[]> [<CommonParameters>]

Get-ResourcePool -RelatedObject <ResourcePoolRelatedObjectBase[]> [<CommonParameters>]

Related Commands

Online Version
New-ResourcePool
Remove-ResourcePool
Set-ResourcePool
Move-ResourcePool

Detailed Description

Retrieves the resource pools available on a vCenter Server system. The cmdlet returns a set of resource pools that correspond to the filter criteria provided by the cmdlet parameters. Virtual machine hosts have a hidden resource pool named Resources, which is a parent of all resource pools of the host. To specify a server different from the default one, use the Server parameter.

Parameters

NameTypeDescriptionRequired?Pipeline InputDefault Value
NameString[]Specifies the names of the resource pools you want to retrieve.falseFalse
IdString[]Specifies the IDs of the resource pools you want to retrieve.


Note: When a list of values is specified for the Id parameter, the returned objects would have an ID that matches exactly one of the string values in that list.
trueFalse
LocationVIContainer[]Specifies vSphere container objects (such as folders, datacenters, and clusters) you want to search for resource pools.falseTrue (ByValue)
NoRecursionSwitchParameterIndicates that you want to disable the recursive behavior of the command.falseFalse
RelatedObjectResourcePoolRelatedObjectBase[]Specifies objects to retrieve one or more ResourcePool objects that are related to them. This parameter accepts ProviderVdc and OMResource objects.trueTrue (ByValue)
ServerVIServer[]Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is passed to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-VIServer.falseFalse
TagTag[]Returns only the resource pools that are associated with any of the specified tags.falseFalse
VMVirtualMachine[]Specifies virtual machines to filter the resource pools that contain at least one of them.trueTrue (ByValue)

Return Type

Zero or more ResourcePool objects

Notes

Examples

-------------------------- Example 1 --------------------------

$server = Connect-VIServer -Server 10.23.112.235

Get-ResourcePool -Server $server -VM VM

Retrieves information of the resource pool to which the virtual machine MS Win belongs.


Copyright © VMware, Inc. All rights reserved.