New-AzureStorageQueue
Creates a storage queue.
Important
You've reached a webpage for an outdated version of Azure PowerShell. All versions of the AzureRM PowerShell module are outdated, but not out of support. The Az PowerShell module is now the recommended PowerShell module for interacting with Azure. To get started with the Az PowerShell module, see Install Azure PowerShell. To learn how to migrate to the Az PowerShell module, see Migrate Azure PowerShell from AzureRM to Az.
Syntax
New-AzureStorageQueue
[-Name] <String>
[-Context <IStorageContext>]
[<CommonParameters>]
Description
The New-AzureStorageQueue cmdlet creates a storage queue in Azure.
Examples
Example 1: Create an Azure storage queue
PS C:\>New-AzureStorageQueue -Name "queueabc"
This example creates a storage queue named queueabc.
Example 2: Create multiple azure storage queues
PS C:\>"queue1 queue2 queue3".split() | New-AzureStorageQueue
This example creates multiple storage queues. It uses the Split method of the .NET String class and then passes the names on the pipeline.
Parameters
Specifies the Azure storage context. You can create it by using the New-AzureStorageContext cmdlet.
Type: | IStorageContext |
Position: | Named |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies a name for the queue.
Type: | String |
Aliases: | N, Queue |
Position: | 0 |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Inputs
IStorageContext
Parameter 'Context' accepts value of type 'IStorageContext' from the pipeline
String
Parameter 'Name' accepts value of type 'String' from the pipeline