Get-VBRApplicationBackupSnapshot
Short Description
Returns application backup snapshots.
Applies to
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
This cmdlet provides parameter sets that allow you to:
- Get snapshots by name.
|
Get-VBRApplicationBackupSnapshot [-Name <String[]>] [<CommonParameters>] |
- Get snapshots by ID.
|
Get-VBRApplicationBackupSnapshot -Id <Guid[]> [<CommonParameters>] |
- Get snapshots by application backup repository.
|
Get-VBRApplicationBackupSnapshot -Repository <VBRApplicationBackupRepository> [<CommonParameters>] |
Detailed Description
This cmdlet returns application backup repository snapshots. You can get snapshots by name, ID, or application backup repository. If you run the cmdlet without parameters, it will return all application backup repository snapshots.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Id |
Specifies an array of IDs for application backup snapshots. The cmdlet will return the snapshots with these IDs. |
Guid[] |
True |
Named |
False |
|
Name |
Specifies an array of names of application backup snapshots. The cmdlet will return snapshots with these names. |
String[] |
False |
Named |
False |
|
Repository |
Specifies the application backup repository. The cmdlet will return snapshots stored in this repository. |
Accepts the VBRApplicationBackupRepository object. To get this object, run the Get-VBRApplicationBackupRepository cmdlet. |
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRApplicationBackupSnapshot object that contains information about the application backup snapshot.
Examples
Example 1: Getting Application Backup Snapshots by Name
|
This command gets an application backup repository snapshot by its name.
|
Example 2: Getting Application Backup Snapshots by ID
|
This command gets an application backup repository snapshot by its ID.
|
Example 3: Getting Application Backup Snapshots by Repository
|
This example shows how to get snapshots for the Oracle FRA Repository application backup repository.
Perform the following steps:
|
Related Commands