Get-VBRSnapshotRestorePoint
Short Description
Returns restore points of InterSystems IRIS snapshot backups.
Applies to
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
|
Get-VBRSnapshotRestorePoint [-Backup <VBRSnapshotBackup>] [-Id <Guid[]>] [-ObjectName <String[]>] [<CommonParameters>] |
Detailed Description
This cmdlet returns restore points of InterSystems IRIS snapshot backups.
Use these restore points to restore InterSystems IRIS instances with the Start-VBRIrisInstanceRestore cmdlet.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Backup |
Specifies the snapshot backup whose restore points you want to get. |
Accepts the VBRSnapshotBackup object. To get this object, run the Get-VBRSnapshotBackup cmdlet. |
False |
Named |
True (ByPropertyName, ByValue) |
|
Id |
Specifies an array of IDs of restore points. The cmdlet will return restore points with these IDs. |
Guid[] |
False |
Named |
False |
|
ObjectName |
Specifies an array of names of InterSystems IRIS instances. The cmdlet will return restore points of these instances. |
String[] |
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns an array of VBRSnapshotRestorePoint objects that contain restore points of InterSystems IRIS snapshot backups.
Examples
Getting Restore Points of an InterSystems IRIS Snapshot Backup
This example shows how to get restore points of a specific InterSystems IRIS snapshot backup.
|
$backup = Get-VBRSnapshotBackup -Name "IRIS Backup Job" Get-VBRSnapshotRestorePoint -Backup $backup[0] |
Perform the following steps:
- Run the Get-VBRSnapshotBackup cmdlet. Specify the Name parameter value. Save the result to the $backup variable.
- Run the Get-VBRSnapshotRestorePoint cmdlet. Set the $backup variable as the Backup parameter value.
Related Commands