Share via


StorageQueueCollection.GetAll(String, String, CancellationToken) Method

Definition

Gets a list of all the queues under the specified storage account

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/queueServices/default/queues
  • Operation Id: Queue_List
  • Default Api Version: 2022-09-01
  • Resource: StorageQueueResource
public virtual Azure.Pageable<Azure.ResourceManager.Storage.StorageQueueResource> GetAll (string maxpagesize = default, string filter = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAll : string * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Storage.StorageQueueResource>
override this.GetAll : string * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Storage.StorageQueueResource>
Public Overridable Function GetAll (Optional maxpagesize As String = Nothing, Optional filter As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of StorageQueueResource)

Parameters

maxpagesize
String

Optional, a maximum number of queues that should be included in a list queue response.

filter
String

Optional, When specified, only the queues with a name starting with the given filter will be listed.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

A collection of StorageQueueResource that may take multiple service requests to iterate over.

Applies to