Add-VBRAzureStorageServer
Short Description
Adds Microsoft Azure object storage as unstructured data source to the inventory.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Add-VBRAzureStorageServer -FriendlyName <String> -Account <VBRAzureBlobAccount> -RegionType <VBRAzureBlobRegionType> [-ProxyMode <VBRNASProxyMode>] [-SelectedProxyServer <VBRNASProxyServer[]>] -CacheRepository <CBackupRepository> [-BackupIOControlLevel <VBRUnstructuredBackupIOControlLevel>] [-UseChangeFeed] [<CommonParameters>] |
Detailed Description
This cmdlet adds Microsoft Azure object storage as unstructured data source to the inventory. You can add the following object storage repositories:
- Microsoft Azure Blob Storage
- Microsoft Azure Data Lake
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Account |
Specifies Microsoft Azure credentials records. The cmdlet will use these credentials record to connect to object storage.
Accepts the |
|
True |
Named |
False |
|
BackupIOControlLevel |
Specifies a speed that Veeam Backup & Replication will use to read data from object storage. You can specify either of the following speed:
|
|
False |
Named |
False |
|
CacheRepository |
Specifies the cache repository. Veeam Backup & Replication will keep the .VCACHE files on this repository.
Accepts the |
|
True |
Named |
False |
|
FriendlyName |
Specify a name that you want to assign to the object storage. |
|
True |
Named |
True (ByValue) |
|
ProxyMode |
Specifies the backup proxy options.
|
|
False |
Named |
False |
|
RegionType |
Specifies the region type of Microsoft Azure storage. The cmdlet will connect to the selected region type and will set up a connection with Microsoft Azure storage. You can select the following types of regions:
|
|
True |
Named |
False |
|
SelectedProxyServer |
For the Specifies the backup proxy. Veeam Backup & Replication will use this backup proxy to back up Microsoft Azure object storage.
Accepts the |
False |
Named |
False |
|
|
UseChangeFeed |
Defines that the cmdlet will use the blob change feed option for the Microsoft Azure object storage. Note: You must enable this option beforehand for your storage account. For more information, see Microsoft Docs. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
Examples
Adding Microsoft Azure Data Lake as Unstructured Data Source
This example shows how to add Microsoft Azure Data Lake object storage as unstructured data source to the inventory.
|
$creds = Add-VBRAzureBlobAccount -Name "string" -SharedKey "string" $cacherepository = Get-VBRBackupRepository -Name "WinSrv" Add-VBRAzureStorageServer -FriendlyName "Azure Blob" -Account $creds -RegionType Global -CacheRepository $cacherepository |
Perform the following steps:
- Run the
Add-VBRAzureBlobAccountCreates Microsoft Azure Blob credentials records. cmdlet. Specify theNameand theSharedKeyparameters values. Save the result to the$credsvariable. - Run the
Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Specify theNameparameter value. Save the result to the$cacherepositoryvariable. - Run the
Add-VBRAzureStorageServercmdlet. Specify the following settings:- Specify the
FriendlyNameparameter value. - Set the
$credsvariable as theAccountparameter value. - Set the
Globaloption for theRegionTypeparameter. - Set the
$cacherepositoryvariable as theCacheRepositoryparameter value.
- Specify the
Related Commands
Add-VBRAzureBlobAccountCreates Microsoft Azure Blob credentials records.Get-VBRBackupRepositoryReturns a list of backup repositories.Get-VBRNASProxyServerReturns file backup proxy servers added to the Veeam Backup & Replication infrastructure.