Get-StoragePluginSnapshot
Short Description
Returns snapshots of Universal Storage API integrated systems.
Applies to
Platform: VMware
Product Edition: Enterprise Plus, Veeam Universal License
Storage System: IBM Spectrum Virtualize, INFINIDAT InfiniBox, Pure Storage
Syntax
Detailed Description
This cmdlet returns snapshots of Universal Storage API integrated systems.
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 on common parameters, see the About CommonParameters section of Microsoft Docs.
Example 1
This example shows how to get a storage snapshot by name. The cmdlet will look for the snapshot across all Universal Storage API integrated systems.
Example 2
This example shows how to get snapshots of several storage volumes.
You will need to perform the following steps:
- Run Get-StoragePluginHost to get the storage. Save the result to the $storage variable.
- Get the volumes. To do this, run Get-StoragePluginVolume with the $storage variable and save each volume to a separate variable: $volume1, $volume2, etc.
- Run Get-StoragePluginSnapshot with the $volume1 and $volume2 variables.
$storage = Get-StoragePluginHost -Name "IBM Spectrum" $volume1 = Get-StoragePluginVolume -Host $storage -Name "VOLUME-01" $volume2 = Get-StoragePluginVolume -Host $storage -Name "VOLUME-02" Get-StoragePluginSnapshot -Volume $volume1, $volume2 |
Related Commands