Get-VBRSnapshotRestorePoint
Short Description
Returns restore points of InterSystems IRIS snapshot backups.
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-VBRIrisInstanceRestoreStarts restore of InterSystems IRIS instances. cmdlet.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Backup |
Specifies the snapshot backup whose restore points you want to get.
Accepts the |
False |
Named |
True (ByPropertyName, ByValue) |
|
|
Id |
Specifies an array of IDs of restore points. The cmdlet will return restore points with these IDs. |
|
False |
Named |
False |
|
ObjectName |
Specifies an array of names of InterSystems IRIS instances. The cmdlet will return restore points of these instances. |
|
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-VBRSnapshotBackupReturns InterSystems IRIS snapshot backups. cmdlet. Specify theNameparameter value. Save the result to the$backupvariable. - Run the
Get-VBRSnapshotRestorePointcmdlet. Set the$backupvariable as theBackupparameter value.
Related Commands
Get-VBRSnapshotBackupReturns InterSystems IRIS snapshot backups.Start-VBRIrisInstanceRestoreStarts restore of InterSystems IRIS instances.