Short Description
Returns Nimble storage snapshots.
Applies to
Platform: VMware
Product Edition: Enterprise Plus
Syntax
Get-NimbleSnapshot [-Name <string[]>] [-Volume <CSanVolume[]>] [<CommonParameters>] |
Detailed Description
This cmdlet returns Nimble storage snapshots.
You can get the list of all storage snapshots or look for a specific snapshot by name or associated volume.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Name | Specifies the array of snapshot names. The cmdlet will return the snapshots with these names. | False | Named | False | False |
Volume | Specifies the array of storage volumes. The cmdlet will return the snapshots of these volumes. | False | Named | True (ByValue, | 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 returns an existing Nimble storage snapshot by name.
PS C:\PS> Get-NimbleSnapshot -Name "DailySnapshot01" |
Example 2
This example shows how to get the existing snapshots of several Nimble storage volumes.
You will need to perform the following steps:
- Run Get-NimbleHost to get the storage. Save the result to the $storage variable.
- Run Get-NimbleVolume with the $storage variable to get the storage volumes. Save each volume to a separate variable: $volume1, $volume2, etc.
- Run Get-NimbleSnapshot with the $volume1 and $volume2 variables.
PS C:\PS> $storage = Get-NimbleHost -Name "Nimble-FC" PS C:\PS> $volume1 = Get-NimbleVolume -Host $storage -Name "VOL01" PS C:\PS> $volume2 = Get-NimbleVolume -Host $storage -Name "VOL02" PS C:\PS> Get-NimbleSnapshot -Volume $volume1, $volume2 |
Related Commands