Set-VBRAzureDataBoxRepository

Short Description

Modifies settings of Azure Data Box storage as an object storage repository to the backup infrastructure.

Applies to

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[]>] [-LimitConcurrentJobs] [-MaxConcurrentJobs <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 parameters values with new values. The parameters that you omit will remain unchanged.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Repository

Specifies Azure Data Box storage that you want to modify.

Accepts the VBRAzureDataBoxRepository object. To get this object, run the Get-VBRObjectStorageRepository cmdlet.

True

Named

True

Name

Specifies a name of Azure Data Box storage. The cmdlet will add Azure Data Box storage to Veeam Backup & Replication with this name.

String

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.

String

False

Named

False

UseGatewayServer

Defines that cmdlet will use a gateway server to access an Azure Data Box storage.

SwitchParameter

False

Named

False

GatewayServer

Specifies a gateway server that you want to use to access an Azure Data Box storage.

Accepts the CHost object. To get this object, run the Get-VBRServer cmdlet.

False

Named

False

ConnectionType

Specifies how Veeam Backup & Replication will access the object storage repository:

  • Direct: Use this option if you want Veeam Backup & Replication to use a proxy server to transfer data from the processed VM to object storage repositories.
  • Gateway: Use this option if you want Veeam Backup & Replication to use a gateway server to transfer data from processed VM to object storage repositories.
    Note: Provide the GatewayServer parameter to specify the server.

Default: Direct.

VBRRepositoryConnectionType

False

Named

False

LimitConcurrentJobs

Defines that the number of concurrent jobs using this repository must be limited.

Use the MaxConcurrentJobs parameter to set the maximum value.

SwitchParameter

False

Named

False

MaxConcurrentJobs

To set maximum value for the LimitConcurrentJobs parameter.

Specifies the maximum allowed number of concurrent tasks for a repository.

Permitted values: 1 to 99.

Int32

False

Named

False

Force

Defines that the cmdlet will modify an object storage repository without showing warnings in the PowerShell console.

SwitchParameter

False

Named

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

VBRAzureDataBoxRepository

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 -UseGatewayServer -GatewayServer $gateway

Perform the following steps:

  1. Run the Get-VBRObjectStorageRepository cmdlet. Specify the Name parameter value. Save the result to the $repository variable.
  2. Run the Get-VBRServer cmdlet. Specify the Name parameter value. Save the result to the $repository variable.
  3. Run the Set-VBRAzureDataBoxRepository cmdlet. Set the $azure variable as the Repository parameter value. Provide the UseGatewayServer parameter. Set the $gateserv variable as the GatewayServer parameter value.

Related Commands