Get-VBOAzureVirtualMachineSize
Short Description
Returns the Azure archiver appliance size.
Syntax
|
Get-VBOAzureVirtualMachineSize -Subscription <VBOAzureSubscription> -Location <VBOAzureLocation> [-Name <String>] [<CommonParameters>] |
Detailed Description
This cmdlet returns the VBOAzureVirtualMachineSize object. This object contains the size of an auxiliary virtual machine in Microsoft Azure that is deployed and configured automatically by Veeam Backup for Microsoft 365.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Location |
Specifies a Microsoft Entra region.
Accepts the
To get this object, run the |
True |
Named |
False |
|
|
Name |
Specifies a name of an auxiliary virtual machine. |
|
False |
Named |
False |
|
Subscription |
Specifies a subscription associated with a user account that will be used to access Azure Blob Storage.
Accepts the
To get this object, run the |
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About Common Parameters section of Microsoft Learn.
Output Object
The cmdlet returns the VBOAzureVirtualMachineSize object.
Examples
Getting Azure Archiver Appliance Size
This example shows how to get the Azure archiver appliance size.
|
$azureacc = Get-VBOAzureServiceAccount -Id f8e5ac3d-d883-4dd8-8de3-a8f315fb6ae2 $subscription = Get-VBOAzureSubscription -ServiceAccount $azureacc -Id "06b7354e-518f-4a10-b4c1-98f49d743012" $location = Get-VBOAzureLocation -Subscription $subscription -Name westeurope Get-VBOAzureVirtualMachineSize -Subscription $subscription -Location $location -Name Standard_F8s_v2 |
Perform the following steps:
- Run the
Get-VBOAzureServiceAccountReturns Microsoft Azure service account details. cmdlet. Specify theIdparameter value. Save the result to the$azureaccvariable. - Run the
Get-VBOAzureSubscriptionReturns Microsoft Azure subscriptions associated with a user account that will be used to access Azure Blob Storage. cmdlet. Set the$azureaccvariable as theServiceAccountparameter value. Specify theIdparameter value. Save the result to the$subscriptionvariable. - Run the
Get-VBOAzureLocationReturns a Microsoft Entra region. cmdlet. Specify the$subscriptionvariable as theSubscriptionparameter value. Specify theNameparameter value. Save the result to the$locationvariable. - Run the
Get-VBOAzureVirtualMachineSizecmdlet. Specify the$subscriptionvariable as theSubscriptionparameter value and the$locationas theLocationparameter value. Specify theNameparameter value.
Related Commands
Get-VBOAzureSubscriptionReturns Microsoft Azure subscriptions associated with a user account that will be used to access Azure Blob Storage.Get-VBOAzureLocationReturns a Microsoft Entra region.Get-VBOAzureServiceAccountReturns Microsoft Azure service account details.