Short Description
Returns appliances for restoring Linux VMs to Microsoft Azure.
Applies to
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus
Syntax
This cmdlet provides 3 parameter sets.
- For looking for all appliances:
Get-VBRAzureLinuxRestoreAppliance [<CommonParameters>] |
- For looking for appliances by ID:
Get-VBRAzureLinuxRestoreAppliance [-Id <guid[]>] [<CommonParameters>] |
- For looking for appliances associated with a particular account:
Get-VBRAzureLinuxRestoreAppliance [-Account <VBRAzureAccount>] [<CommonParameters>] |
Detailed Description
This cmdlet returns appliances for restoring Linux VMs to Microsoft Azure.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Id | Specifies the ID of the appliance you want to get. | False | Named | False | False |
Account | Specifies the account. The cmdlet will return appliances associated with this account. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
Return Type
Example 1
This command returns all Linux VM restore appliances.
PS C:\PS> Get-VBRAzureLinuxRestoreAppliance |
Example 2
This example shows how to get a Linux VM restore appliance created for a Microsoft Azure account:
- Get the Microsoft Azure account: run Get-VBRAzureAccount and save the result to the $account variable.
- Run Get-VBRAzureLinuxRestoreAppliance with the $account variable. Pass the result to the Select-Object cmdlet to select the first appliance in the list.
PS C:\PS> $account = Get-VBRAzureAccount -Type ResourceManager -Name "RestoreToAzureRM@Veeam.com" PS C:\PS> Get-VBRAzureLinuxRestoreAppliance -Account $account | Select-Object -First 1 |
Related Commands