你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Get-AzStorageQueue

列出存储队列。

语法

Get-AzStorageQueue
   [[-Name] <String>]
   [-Context <IStorageContext>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Get-AzStorageQueue
   -Prefix <String>
   [-Context <IStorageContext>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

说明

Get-AzStorageQueue cmdlet 列出了与Azure 存储帐户关联的存储队列。

示例

示例 1:列出所有Azure 存储队列

Get-AzStorageQueue

此命令获取当前存储帐户的所有存储队列的列表。

示例 2:使用通配符列出Azure 存储队列

Get-AzStorageQueue -Name queue*

此命令使用通配符获取名称以队列开头的存储队列列表。

示例 3:使用队列名称前缀列出Azure 存储队列

Get-AzStorageQueue -Prefix "queue"

此示例使用 Prefix 参数获取名称以队列开头的存储队列列表。

参数

-Context

指定 Azure 存储上下文。 可以使用 New-AzStorageContext cmdlet 创建它

类型:IStorageContext
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-DefaultProfile

用于与 Azure 通信的凭据、帐户、租户和订阅。

类型:IAzureContextContainer
别名:AzureRmContext, AzureCredential
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-Name

指定名称。 如果未指定任何名称,cmdlet 将获取所有队列的列表。 如果指定了完整或部分名称,则 cmdlet 将获取与名称模式匹配的所有队列。

类型:String
别名:N, Queue
Position:0
默认值:None
必需:False
接受管道输入:True
接受通配符:True

-Prefix

指定要获取的队列名称中使用的前缀。

类型:String
Position:Named
默认值:None
必需:True
接受管道输入:False
接受通配符:False

输入

String

IStorageContext

输出

AzureStorageQueue