Skip to main content

Get-LXCAComputeNode

This cmdlet retrieves inventory data for one or more servers in Flex System chassis.

Note
You can pipe Chassis objects to this cmdlet.

Syntax

Get-LXCAComputeNode [-Connection LXCAConnection] 
[-Chassis Chassis[]]
[CommonParameter]

Get-LXCAComputeNode [-Connection LXCAConnection]
[-ChassisUuid String[]]
[CommonParameter]

Get-LXCAComputeNode [-Connection Connection]
[-NodeUuid String[]]
[CommonParameter]

Parameters

-Connection LXCAConnection
Specifies the connection to the Lenovo XClarity Administrator server. If no connection is specified, the result from the last Connect-LXCA cmdlet is used.
-Chassis Chassis[]
Specifies a list of Flex System chassis. The cmdlet returns all servers in each chassis in the list. If no chassis is specified, the cmdlet returns all servers in all managed Flex System chassis.
Tip
To obtain the list of chassis, use Get-LXCAChassis.
-ChassisUuid String[]
Specifies one or more Flex System chassis chassis UUIDs. The cmdlet returns all servers in the specified chassis. If no chassis UUID is specified, the cmdlet returns all servers in all managed Flex System chassis.
-NodeUuid String[]
Specifies one or more UUIDs for servers in Flex System chassis. If no server UUID is specified, the cmdlet returns all servers in all managed Flex System chassis.
CommonParameters
This cmdlet supports the following common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -WarningAction, -WarningVariable, -OutBuffer, -PipelineVariable, -OutVariable. For detailed information about each common parameter, see the Microsoft PowerShell Common Parameters webpage.

Results

This cmdlet returns one or more ComputeNode objects with information about the server in the Flex System chassis, such as firmware levels, installed processors, and installed memory.

Examples

The following example retrieves details about all servers in all managed Flex System chassis.

$cred = Get-Credential
Connect-LXCA -Host 192.0.2.0 -Credential $cred

$node = Get-LXCAComputeNode

Disconnect-LXCA

Get-LXCAChassis