This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-HP4Cluster

Short Description

Returns HPE StoreVirtual storage clusters.

Applies to

Platform: VMware

Product Edition: Standard, Enterprise, Enterprise Plus

Storage System: HPE StoreVirtual (LeftHand/P4000), HPE StoreVirtual VSA

Syntax

Get-HP4Cluster -Storage <CHpP4Group[]> [-Name <string[]>][<CommonParameters>]

Detailed Description

This cmdlet returns HPE StoreVirtual storage clusters.

You can get the list of all storage clusters in your storage system, or narrow down the output by the cluster name or a specific storage.

Alias

Get-VBRHPCluster

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Storage

Specifies the array of the storage systems. The cmdlet will return the clusters on these storage systems.

False

Named

False

False

Name

Specifies the array of storage cluster names. The cmdlet will return the clusters with these names.

False

Named

False

True

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

Example 1

This example shows how to get all clusters in the HPE StoreVirtual storage.

You will need to perform the following steps:

  1. Run Get-HP4Storage to get the storage. Save the result to the $storage variable.
  2. Run Get-HP4Cluster with the $storage variable.

$storage = Get-HP4Storage -Name "HPE StoreVirtual VSA"

Get-HP4Cluster -Storage $storage

Example 2

This example shows how to get a cluster by name.

You will need to perform the following steps:

  1. Run Get-HP4Storage to get the storage. Save the result to the $storage variable.
  2. Run Get-HP4Cluster with the $storage variable.

$storage = Get-HP4Storage -Name "HPE StoreVirtual VSA"

Get-HP4Cluster -Storage $storage -Name "HPE Cluster 01"

Related Commands

Get-HP4Storage