Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/HewlettPackard/POSH-HPEOneView/llms.txt

Use this file to discover all available pages before exploring further.

Synopsis

Retrieves uplink set resources from the connected HPE OneView appliance, optionally filtered by name, type, or parent logical interconnect.

Syntax

By name

Get-OVUplinkSet
    [-Name <String>]
    [-LogicalInterconnect <Object>]
    [-Report]
    [-ExportFile <String>]
    [-ApplianceConnection <Object>]
    [<CommonParameters>]

By type

Get-OVUplinkSet
    [-LogicalInterconnect <Object>]
    -Type <String>
    [-Report]
    [-ExportFile <String>]
    [-ApplianceConnection <Object>]
    [<CommonParameters>]

Description

Get-OVUplinkSet retrieves uplink set resources from HPE OneView. An uplink set defines the set of uplink ports and the networks that flow through them on an interconnect module. Uplink sets can be of type Ethernet (carries tagged/untagged Ethernet VLANs) or FibreChannel (carries FC SAN traffic). Uplink sets are scoped to a specific logical interconnect. Use the -LogicalInterconnect parameter to retrieve only the uplink sets belonging to a particular logical interconnect. Without this parameter, all uplink sets across all logical interconnects are returned. Results can be filtered by type using the -Type parameter.

Parameters

Name
String
The name of the uplink set to retrieve. When omitted, all uplink sets are returned (subject to other filters).
LogicalInterconnect
Object
A logical interconnect object (from Get-OVLogicalInterconnect) to scope the query. When provided, only uplink sets belonging to that logical interconnect are returned. Supports pipeline input.Alias: -liname.
Type
String
Filter results to a specific uplink set type. Accepted values: Ethernet, FibreChannel.
Report
Switch
Display results in a formatted list view.
This parameter is deprecated. The cmdlet now always returns objects in Format-List view. Providing -Report generates a deprecation warning.
ExportFile
String
Path to a JSON file where the retrieved uplink set objects will be exported.
ApplianceConnection
Object
The appliance connection object or name. Defaults to the default connected session.

Examples

Get-OVUplinkSet
$li = Get-OVLogicalInterconnect -Name "Enclosure1-LIG"
Get-OVUplinkSet -LogicalInterconnect $li
Get-OVLogicalInterconnect -Name "Enclosure1-LIG" | Get-OVUplinkSet
Get-OVUplinkSet -Type FibreChannel
Get-OVUplinkSet -Name "Fabric A"

Output

HPEOneView.Networking.UplinkSet objects.