New-VBREntraIDTenantItemExportMapping
Short Description
Defines an object with a restore point that you want to use when exporting Microsoft Entra ID item data.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
New-VBREntraIDTenantItemExportMapping -Item <VBREntraIDTenantItem> -RestorePoint <VBREntraIDTenantRestorePoint> [<CommonParameters>] |
Detailed Description
This cmdlet defines an object that specifies a restore point for Microsoft Entra ID item data export performed by running the Export-VBREntraIDTenantItemToJsonExports Microsoft Entra ID tenant item properties and metadata in the JSON format. cmdlet.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Item |
Specifies the backed-up tenant item whose data you want to export.
Accepts the |
True |
Named |
False |
|
|
RestorePoint |
Specifies a restore point from which you want to export the item data.
Accepts the |
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBREntraIDTenantItemExportMapping object that defines an object with a restore point that you want to use when exporting Microsoft Entra ID item data.
Examples
Defining Restore Point for Multiple Items
This example shows how to specify a restore point for 2 users whose data you plan to export.
|
$backup = Get-VBREntraIDTenantBackup -Name "Tenant-backup-1" $rp = Get-VBREntraIDTenantRestorePoint -Backup $backup -Id "61448046-067f-4908-88ad-31e785477fc6" $items = Get-VBREntraIDTenantItem -Backup $backup -Type User -Name "Admin-12","Admin-13" $mapping = New-VBREntraIDTenantItemExportMapping -Item $items[2] -RestorePoint $rp |
Perform the following steps:
- Run the
Get-VBREntraIDTenantBackupReturns backups of Microsoft Entra ID tenants. cmdlet. Specify theNameparameter value. Save the result to the$backupvariable. - Run the
Get-VBREntraIDTenantRestorePointReturns restore points of a Microsoft Entra ID tenant backup. cmdlet. Set the$backupvariable as theBackupparameter value. Specify theIdparameter value. Save the result to the$rpvariable. - Run the
Get-VBREntraIDTenantItemReturns Microsoft Entra ID items that a backup contains. cmdlet. Set the$backupvariable as theBackupparameter value. Specify theTypeandNameparameter values. Save the result to the$itemsvariable. - Run the
New-VBREntraIDTenantItemExportMappingDefines an object with a restore point that you want to use when exporting Microsoft Entra ID item data. cmdlet. Set the$itemsvariable as theItemparameter value, and the$rpvariable as theRestorePointparameter value. Save the result to the$mappingvariable.
Related Commands
Get-VBREntraIDTenantItemReturns Microsoft Entra ID items that a backup contains.Get-VBREntraIDTenantRestorePointReturns restore points of a Microsoft Entra ID tenant backup.