Get-VEMDBDatabase
Short Description
Returns backed-up MongoDB databases.
Applies to
Veeam Backup & Replication
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
Get-VEMDBDatabase [-Session] <VEMDBRestoreSession> [-Name <String[]>] [<CommonParameters>] |
Detailed Description
This cmdlet returns an array of backed-up MongoDB databases. After you get the backed-up databases, you can use the Get-VEMDBCollection cmdlet to get the collections you need.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Session | Specifies a restore session initiated to perform operations with MongoDB data. | Accepts the VEMDBRestoreSession object. To get this object, run the Get-VEMDBRestoreSession cmdlet. | True | 0 | True (ByValue) |
Name | Specifies an array of names of MongoDB databases. The cmdlet will return an array of databases with the specified names. | String[] | False | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Output Object
The cmdlet returns the VEMDBDatabase[] object that contains an array of backed-up MongoDB databases.
Examples
Example 1. Getting All MongoDB Databases Within Specified Restore Session
This example shows how to get an array of all MongoDB databases within the specified restore session.
Perform the following steps:
The cmdlet will return an array of active restore sessions. Note the ordinal number of the necessary restore session (in our example, it is the second restore session in the array).
|
Example 2. Getting MongoDB Databases With Specified Names
This example shows how to get an array of MongoDB databases with the specified names.
Perform the following steps:
The cmdlet will return an array of active restore sessions. Note the ordinal number of the necessary restore session. In our example, it is the second restore session in the array.
|
Related Commands