Set-VBRAzureDataBoxRepository
Short Description
Modifies settings of Azure Data Box storage as an object storage repository to the backup infrastructure.
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRAzureDataBoxRepository -Repository <VBRAzureDataBoxRepository> [-Name <String>] [-Description <String>] [-UseGatewayServer] [-ConnectionType <VBRRepositoryConnectionType>] [-GatewayServer <CHost[]>] [-EnableConcurrentTasksLimit] [-MaxConcurrentTasks <Int32>] [-Force] [<CommonParameters>] |
Detailed Description
This cmdlet modifies Azure Data Box storage that is added as an object storage repository to the backup infrastructure.
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 |
|---|---|---|---|---|---|
|
ConnectionType |
Specifies how Veeam Backup & Replication will access the object storage repository:
Default: |
|
False |
Named |
False |
|
Description |
Specifies a description of Azure Data Box storage. The cmdlet will add Azure Data Box storage to Veeam Backup & Replication with this description. |
|
False |
Named |
False |
|
EnableConcurrentTasksLimit |
Enables limits for concurrent tasks that can be processed by the object storage repository.
Use the |
|
False |
Named |
False |
|
Force |
Defines that the cmdlet will modify an object storage repository without showing warnings in the PowerShell console. |
|
False |
Named |
False |
|
GatewayServer |
Specifies an array of gateway servers that you want to use to transfer data from processed VM to object storage repositories.
Accepts the |
|
False |
Named |
False |
|
MaxConcurrentTasks |
To set maximum value for the Specifies the maximum allowed number of concurrent tasks for a repository. Permitted values: 1 to 99. |
|
False |
Named |
False |
|
Name |
Specifies a name of Azure Data Box storage. The cmdlet will add Azure Data Box storage to Veeam Backup & Replication with this name. |
|
False |
Named |
False |
|
Repository |
Specifies Azure Data Box storage that you want to modify.
Accepts the |
True |
Named |
True (ByValue) |
|
|
UseGatewayServer |
Note: This parameter is deprecated and will be ignored. Use the Defines that the cmdlet will use a gateway server to transfer data from processed VM to object storage repositories.
Default: |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
Examples
Modifying Gateway Server for Azure Data Box Storage
This example shows how to modify Azure Data Box storage added as an object storage repository to the Veeam Backup & Replication infrastructure. The cmdlet will use custom gateway servers to connect to Azure Data Box storage.
|
$repository = Get-VBRObjectStorageRepository -Name "Azure Data Box" $gateway = Get-VBRServer -Name "north.tech.local", "north2.tech.local" Set-VBRAzureDataBoxRepository -Repository $repository -ConnectionType Gateway -GatewayServer $gateway |
Perform the following steps:
- Run the
Get-VBRObjectStorageRepositoryReturns object storage added as backup repositories to Veeam Backup & Replication. cmdlet. Specify theNameparameter value. Save the result to the$repositoryvariable. - Run the
Get-VBRServerReturns hosts connected to the backup infrastructure. cmdlet. Specify theNameparameter value. Save the result to the$gatewayvariable. - Run the
Set-VBRAzureDataBoxRepositorycmdlet. Set the$repositoryvariable as theRepositoryparameter value. Set theGatewayvalue for theConnectionTypeparameter. Set the$gatewayvariable as theGatewayServerparameter value.
Related Commands
Get-VBRObjectStorageRepositoryReturns object storage added as backup repositories to Veeam Backup & Replication.Get-VBRServerReturns hosts connected to the backup infrastructure.