Remove-StoragePluginSnapshot
Short Description
Removes snapshots of Universal Storage API integrated systems.
Note |
|
If the four-eyes authorization is enabled, you cannot run this cmdlet. For more information, see the Four-Eyes Authorization section in the User Guide for VMware vSphere. |
Platform: VMware
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Storage System: IBM Spectrum Virtualize, INFINIDAT InfiniBox, Pure Storage
Syntax
|
Remove-StoragePluginSnapshot -Snapshot <ISanSnapshot[]> [<CommonParameters>] |
Detailed Description
This cmdlet permanently removes a selected storage snapshot from your virtual infrastructure.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Snapshot |
Specifies the array of snapshots. The cmdlet will remove these snapshots.
Accepts the |
|
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Examples
Removing Snapshots of Several Volumes
This example shows how to remove snapshots of several volumes.
|
$storage = Get-StoragePluginHost -Name "IBM Spectrum" $volume1 = Get-StoragePluginVolume -Host $storage -Name "VOLUME-01" $volume2 = Get-StoragePluginVolume -Host $storage -Name "VOLUME-02" $snapshot = Get-StoragePluginSnapshot -Volume $volume1, $volume2 Remove-StoragePluginSnapshot -Snapshot $snapshot |
Perform the following steps:
- Get the volume snapshots you want to remove. To do this, perform the following steps:
- Run the
Get-StoragePluginHostReturns Universal Storage API integrated systems. cmdlet. Specify theNameparameter value. Save the result to the$storagevariable. - Run the
Get-StoragePluginVolumeReturns volumes of Universal Storage API integrated systems added to the backup infrastructure. cmdlet. Set the$storagevariable as theHostparameter value. Specify theNameparameter value. Save each volume to a separate variable:$volume1,$volume2, etc. - Run the
Get-StoragePluginSnapshotReturns snapshots of Universal Storage API integrated systems. cmdlet. Set the$volume1and$volume2variables as theVolumeparameter value. Save the result to the$snapshotvariable.
- Run the
- Run the
Remove-StoragePluginSnapshotcmdlet. Set the$snapshotvariable as theSnapshotparameter value.
Related Commands
Get-StoragePluginHostReturns Universal Storage API integrated systems.Get-StoragePluginVolumeReturns volumes of Universal Storage API integrated systems added to the backup infrastructure.Get-StoragePluginSnapshotReturns snapshots of Universal Storage API integrated systems.