Get-HP4Snapshot
Short Description
Returns HPE StoreVirtual storage snapshots.
Applies to
Platform: VMware
Product Edition: Standard, Enterprise, Enterprise Plus
Storage system: HPE StoreVirtual (LeftHand/P4000), HPE StoreVirtual VSA
Syntax
Get-HP4Snapshot [-Name <string[]>][<CommonParameters>] -OR- Get-HP4Snapshot [-Name <string[]>] [-Volume <CSanVolume[]>][<CommonParameters>] |
Related Commands
Detailed Description
This cmdlet returns HPE StoreVirtual storage snapshots.
You can get all storage snapshots, or look for a specific snapshot name or volume.
Alias
Get-VBRHPSnapshot
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Name | Specifies the array of snapshot names. The cmdlet will return snapshots with these names. | False | Named | False | True |
Volume | Specifies the array of storage volumes. The cmdlet will return snapshots of these volumes. | False | Named | False | False |
<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 command looks for a snapshot by name.
Example 2
This command looks for all snapshots of a volume.
- Run Get-HP4Storage to get the storage and save it to the $storage variable.
- Run Get-HP4Volume with the $storage variable. Save the volume to the $volume variable.
- Run Get-HP4Snapshot with the $volume variable.
PS C:\PS> $storage = Get-HP4Storage -Name "HPE StoreVirtual VSA" PS C:\PS> $volume = Get-HP4Volume -Storage $storage -Name "HPE Volume 01" PS C:\PS> Get-HP4Snapshot -Volume $volume |
Example 3
This command looks for a specific snapshot of a volume.
- Run Get-HP4Storage to get the storage and save it to the $storage variable.
- Run Get-HP4Volume with the $storage variable. Save the volume to the $volume variable.
- Run Get-HP4Snapshot with the $volume variable. Indicate the snapshot name.