Get-VBRAzureStorageAccount
Short Description
Returns Microsoft Azure storage accounts available for a subscription.
Applies to
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Get-VBRAzureStorageAccount -Subscription <VBRAzureSubscription> [-Name <string[]>] [<CommonParameters>] |
Detailed Description
This cmdlet returns storage accounts available for a Microsoft Azure subscription.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
---|---|---|---|---|---|
Subscription | Specifies the subscription. The cmdlet will return storage accounts associated with this subscription. | True | Named | True (ByValue, | False |
Name | Specifies the array of names. The cmdlet will return storage accounts that match the specified names. | False | Named | False | True |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Return Type
Example 1
This example shows how to get all storage accounts associated with a subscription.
- Run Get-VBRAzureAccount to get the account. Save it to the $account variable.
- Run Get-VBRAzureSubscription with the $account variable to get the subscription. Save it to the $subscription variable.
- Run Get-VBRAzureStorageAccount with the $subscription variable.
$account = Get-VBRAzureAccount -Name "RestoreToAzureRM@Veeam.com" $subscription = Get-VBRAzureSubscription -Account $account -Name "VeeamDirectRestore2Azure" Get-VBRAzureStorageAccount -Subscription $subscription |
Example 2
This example shows how to get a storage account by the storage account name.
- Run Get-VBRAzureAccount to get the account. Save it to the $account variable.
- Run Get-VBRAzureSubscription with the $account variable to get the subscription. Save it to the $subscription variable.
- Run Get-VBRAzureStorageAccount with the $subscription variable. Specify the name of the storage account you want to get.
$account = Get-VBRAzureAccount -Name "RestoreToAzureRM@Veeam.com" $subscription = Get-VBRAzureSubscription -Account $account -Name "VeeamDirectRestore2Azure" Get-VBRAzureStorageAccount -Subscription $subscription -Name "VeeamDirectRestore2AzureStorage" |
Related Commands