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 one or more storage systems registered with HPE OneView.

Syntax

Get-OVStorageSystem
    [-Name <String>]
    [-Hostname <String>]
    [-Family <String>]
    [-ApplianceConnection <Object>]
    [<CommonParameters>]
Get-OVStorageSystem
    -SerialNumber <String>
    [-Family <String>]
    [-ApplianceConnection <Object>]
    [<CommonParameters>]

Description

Get-OVStorageSystem returns storage system objects from the HPE OneView appliance. You can filter results by display name, hostname, serial number, or storage family. If no filter is provided, all managed storage systems are returned. Returned objects carry the HPEOneView.Storage.System type and can be piped to other storage cmdlets such as Get-OVStoragePool and Add-OVStoragePool.

Parameters

Name
String
Friendly name of the storage system as shown in HPE OneView. Supports wildcard matching. Aliased as SystemName.
Hostname
String
IP address or FQDN of the storage system controller used at import time.
SerialNumber
String
Serial number of the storage array. Aliased as SN. Use the Serial parameter set when filtering by serial number.
Family
String
Limit results to a specific storage family. Accepted values: Alletra6000, Alletra9000, StoreVirtual, StoreServ, Nimble, Primera.
ApplianceConnection
Object
One or more HPE OneView appliance connection objects. Defaults to the default connected session from ${Global:ConnectedSessions}. Aliased as Appliance.

Examples

List all storage systems

Get-OVStorageSystem
Returns all storage systems managed by the connected appliance.

Get a storage system by name

$myStorageSystem1 = Get-OVStorageSystem -Name HP3Par_1
$myStorageSystem2 = Get-OVStorageSystem -Name HP3Par_2

Get a storage system by hostname

Get-OVStorageSystem -Hostname HPEStoreServ_1-array.contoso.com

Filter by storage family

Get-OVStorageSystem -Family Primera
Returns only HPE Primera arrays.

Pipe to Get-OVStoragePool

Get-OVStorageSystem -Name HP3Par_1 | Get-OVStoragePool
Retrieves all storage pools belonging to the named system.

Output

HPEOneView.Storage.System Each object includes the system name, hostname, family, firmware version, managed domain, storage capacity, and port configuration.

Build docs developers (and LLMs) love