Skip to main content

Get-LXCAChassisMember

This cmdlet retrieves information about the components (members) of one or more managed chassis.

Chassis components include:
  • Flex System compute nodes
  • Storage devices
  • Fans
  • Fan logic modules (fan muxes)
  • Power supplies
  • I/O modules (pass-thru modules and switches)
Note
You can pipe Chassis objects to this cmdlet.

Syntax

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

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

Get-LXCAChassisMember [-Connection LXCAConnection]
[-MemberUuid 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 chassis. The cmdlet returns the information about all components in each chassis in the list. If no chassis is specified, all components in all chassis are returned.
Tip
To obtain the chassis list, use Get-LXCAChassis.
-ChassisUuid String[]
Specifies one or more chassis UUIDs. The cmdlet returns the information about all components in each chassis in the list. If no UUID is specified, all components in all chassis are returned.
-MemberUuid String[]
Specifies the UUID of one or more specific components in the chassis. The cmdlet returns the component with the specified UUID. If no UUID is specified, all components in all chassis are returned.
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 ChassisMember objects that contain information about each installed component.

Examples

The following example retrieves details about all installed components for a specified chassis.

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

$chassis = Get-LXCAChassis
$chassmember = Get-LXCAChassisMember -Chassis $chassis[0]

Disconnect-LXCA