Get-VBRAzureBlobContainer
Short Description
Returns Azure Blob containers.
Applies to
Platform: VMware, Hyper-V
Product Edition: Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Get-VBRAzureBlobContainer -Connection <VBRAzureBlobConnection> [-Name <string>] [<CommonParameters>] |
Detailed Description
This cmdlet returns an array of Microsoft Azure Blob containers.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
---|---|---|---|---|---|
Connection | Specifies an active session with Microsoft Azure Blob storage. The cmdlet will return an array of the containers added to this object storage. Accepts the following types:
| True | Named | False |
|
Name | Specifies a name of the Microsoft Azure Blob container that you want to get. | False | Named | False |
|
<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
This example shows how to get all containers added to Microsoft Azure Blob storage. The cmdlet will return an array of containers added to the Global region type.
- Run Get-VBRAzureBlobAccount to get an Microsoft Azure Blob credentials record. Save the result to the $account variable.
- Run Connect-VBRAzureBlobService with the $account variable to connect to Microsoft Azure Blob storage. Use the RegionType parameter to specify the type of the region. Use the ServiceType parameter to specify the type of the connection to Microsoft Azure Blob storage. Save the result to the $connect variable.
- Run Get-VBRAzureBlobContainer with the $connect variable.
$account = Get-VBRAzureBlobAccount -Name "Azure Blob" $connect = Connect-VBRAzureBlobService -Account $account -RegionType Global -ServiceType ExternalRepository Get-VBRAzureBlobContainer -Connection $connect |
Related Commands