New-VBRAzureComputeProxyAppliance
Short Description
Defines proxy appliance settings for adding Azure Archive repository.
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
New-VBRAzureComputeProxyAppliance -VMSize <VBRAzureVMSize> -Network <VBRAzureVirtualNetwork> -Subnet <VBRAzureNetworkSubnet> -ResourceGroup <VBRAzureResourceGroup> [-RedirectorPort <Int32>] [<CommonParameters>] |
Detailed Description
This cmdlet defines the proxy appliance settings for adding an Azure Archive repository.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Network |
Specifies the network to which the proxy appliance appliance must be connected.
Accepts the |
True |
Named |
False |
|
|
RedirectorPort |
Specifies the port that Veeam Backup & Replication will use to route requests between the proxy appliance and backup infrastructure components. |
|
False |
Named |
False |
|
ResourceGroup |
Specifies the resource group that will be associated with the proxy appliance.
Accepts the |
True |
Named |
False |
|
|
Subnet |
Specifies the subnet for the proxy appliance.
Accepts the |
True |
Named |
False |
|
|
VMSize |
Specifies the size of the proxy appliance.
Accepts the |
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
Examples
Adding Azure Proxy Appliance
This example shows how to defines settings of an Azure proxy appliance.
|
$account = Get-VBRAzureBlobAccount -Name "Azure_Blob" $subscription = Get-VBRAzureSubscription -Account $account $location = Get-VBRAzureLocation -Subscription $subscription $vmsize = Get-VBRAzureVMSize -Subscription $subscription -Location $location $network = Get-VBRAzureVirtualNetwork -Name "VeeamInternalNetwork" $subnet = Get-VBRAzureVirtualNetworkSubnet -Network $network -Name "VeeamInternalSubnet" $rg = Get-VBRAzureResourceGroup -Subscription $subscription -Name "VeeamResourceGroup" New-VBRAzureComputeProxyAppliance -VMSize $vmsize -Network $network -Subnet $subnet -ResourceGroup $rg -RedirectorPort 443 |
Perform the following steps:
- Run the
Get-VBRAzureBlobAccountReturns Microsoft Azure Blob credentials records. cmdlet. Specify theNameparameter value. Save the result to the$accountvariable. - Define the Azure proxy settings:
- Run the
Get-VBRAzureSubscriptionReturns subscriptions associated with a Microsoft Azure account. cmdlet. Set the$accountvariable as theAccountparameter value. Save the result to the$subscriptionvariable. - Run the
Get-VBRAzureLocationReturns geographic locations of Microsoft Azure datacenters available for a subscription. cmdlet. Set the$subscriptionvariable as theSubscriptionparameter value. Save the result to the$locationvariable. - Run the
Get-VBRAzureVMSizeReturns Microsoft Azure VM configuration options available for a subscription. cmdlet. Set the$subscriptionvariable as theSubscriptionparameter value. Set the$locationvariable as theLocationparameter value. Save the result to the$vmsizevariable. - Run the
Get-VBRAzureVirtualNetworkReturns Microsoft Azure virtual networks available for a subscription. cmdlet. Specify theNameparameter value. Save the result to the$networkvariable. - Run the
Get-VBRAzureVirtualNetworkSubnetReturns Microsoft Azure virtual network subnets available for a subscription. cmdlet. Set the$networkvariable as theNetworkparameter value. Specify theNameparameter value. Save the result to the$subnetvariable. - Run the
Get-VBRAzureResourceGroupReturns Microsoft Azure resource groups available for a subscription. cmdlet. Set the$subscriptionvariable as theSubscriptionparameter value. Specify theNameparameter value. Save the result to the$rgvariable.
- Run the
- Run the
New-VBRAzureComputeProxyAppliancecmdlet. Specify the following settings:- Set the
$vmsizevariable as theVMSizeparameter value. - Set the
$networkvariable as theNetworkparameter value. - Set the
$subnetvariable as theSubnetparameter value. - Set the
$rgvariable as theResourceGroupparameter value. - Specify the
RedirectorPortparameter value.
- Set the
Related Commands
Add-VBRAzureArchiveRepositoryAdds Azure Archive repository to the backup infrastructure.Get-VBRAzureBlobAccountReturns Microsoft Azure Blob credentials records.Get-VBRAzureLocationReturns geographic locations of Microsoft Azure datacenters available for a subscription.Get-VBRAzureVMSizeReturns Microsoft Azure VM configuration options available for a subscription.Get-VBRAzureVirtualNetworkReturns Microsoft Azure virtual networks available for a subscription.Get-VBRAzureVirtualNetworkSubnetReturns Microsoft Azure virtual network subnets available for a subscription.Get-VBRAzureResourceGroupReturns Microsoft Azure resource groups available for a subscription.