Set-VBRAzureBlobServer
Short Description
Modifies settings of Microsoft Azure Blob storage added as unstructured data source to the inventory.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Set-VBRAzureBlobServer -Server <VBRAzureBlobServer> [-Account <VBRAzureBlobAccount>] [-ProxyMode {Automatic | SelectedProxy}] [-SelectedProxyServer <VBRNASProxyServer[]>] [-CacheRepository <CBackupRepository>] [-BackupIOControlLevel <VBRUnstructuredBackupIOControlLevel> {Lowest | Low | Medium | High | Highest}] [-MetaMigrationType VBRUnstructuredBackupMetaMigrationType {CheckExistence | CopyMetaFromCache | DownloadMetaFromArchive}] [<CommonParameters>] |
Detailed Description
This cmdlet modifies settings of Microsoft Azure Blob storage as unstructured data source to the inventory.
Note |
To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values. The parameters that you omit will remain unchanged. |
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Server | Specifies the Microsoft Azure Blob storage that you want to modify. | Accepts the VBRAzureBlobServer object. To create this object, run the Get-VBRUnstructuredServer cmdlet. | True | Named | True (ByValue, ByPropertyName) |
Account | Specifies Microsoft Azure Blob credentials records.The cmdlet will use these credentials record to connect to object storage. | Accepts the VBRAzureBlobAccount object. To get this object, run the Get-VBRAzureBlobAccount cmdlet. | False | Named | True (ByValue) |
ProxyMode | Specifies the backup proxy options.
| VBRNASProxyMode | False | Named | False |
SelectedProxyServer | For the SelectedProxy option of the ProxyMode parameter. Specifies the backup proxy. Veeam Backup & Replication will use this backup proxy to back up Microsoft Azure Blob object storage. | Accepts the VBRNASProxyServer[] object. To get this object, run the Get-VBRNASProxyServer cmdlet. | False | Named | False |
CacheRepository | Specifies the cache repository. Veeam Backup & Replication will keep the .VCACHE files on this repository. | Accepts the CBackupRepository object. To get this object, run the Get-VBRBackupRepository cmdlet. | False | 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:
| VBRUnstructuredBackupIOControlLevel | False | Named | False |
MetaMigrationType | Specifies how the cmdlet will migrate metadata. You can use one of the following options:
| VBRUnstructuredBackupMetaMigrationType | 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 the VBRAzureBlobServer object that contains settings of Microsoft Azure Blob storage as unstructured data source.
Examples
Modifying Settings of Microsoft Azure Blob Storage Added as Unstructured Data Source
This example shows how to set the high speed for Veeam Backup & Replication to read data from Microsoft Azure Blob storage added as unstructured data source to the inventory.
$server = Get-VBRUnstructuredServer -Name "Azure OS" Set-VBRAzureBlobServer -Server $server -BackupIOControlLevel High |
Perform the following steps:
- Run the Get-VBRUnstructuredServer cmdlet. Specify the Name parameter values. Save the result to the $server variable.
- Run the Set-VBRAzureBlobServer cmdlet. Set the $server variable as the Server parameter value. Set the High option for the BackupIOControlLevel parameter.
Related Commands