New-AzureStorageQueue

Creates a storage queue.

Warning

The AzureRM PowerShell module has been officially deprecated as of February 29, 2024. Users are advised to migrate from AzureRM to the Az PowerShell module to ensure continued support and updates.

Although the AzureRM module may still function, it's no longer maintained or supported, placing any continued use at the user's discretion and risk. Please refer to our migration resources for guidance on transitioning to the Az module.

Syntax

New-AzureStorageQueue
   [-Name] <String>
   [-Context <IStorageContext>]
   [-DefaultProfile <IAzureContextContainer>]
   [<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

-Context

Specifies the Azure storage context. You can create it by using the New-AzureStorageContext cmdlet.

Type:IStorageContext
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-DefaultProfile

The credentials, account, tenant, and subscription used for communication with Azure.

Type:IAzureContextContainer
Aliases:AzureRmContext, AzureCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Name

Specifies a name for the queue.

Type:String
Aliases:N, Queue
Position:0
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

Inputs

String

IStorageContext

Outputs

AzureStorageQueue