Creates an instance of QueueServiceClient.
A URL string pointing to Azure Storage queue service, such as "https://myaccount.queue.core.windows.net". You can append a SAS if using AnonymousCredential, such as "https://myaccount.queue.core.windows.net?sasString".
Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the @azure/identity package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used.
Creates an instance of QueueServiceClient.
A URL string pointing to Azure Storage queue service, such as "https://myaccount.queue.core.windows.net". You can append a SAS if using AnonymousCredential, such as "https://myaccount.queue.core.windows.net?sasString".
Call newPipeline() to create a default pipeline, or provide a customized pipeline.
StorageClientContext is a reference to protocol layer operations entry, which is generated by AutoRest generator.
URL string value.
Creates a new queue under the specified account.
name of the queue to create
Response data for the Queue create operation.
Deletes the specified queue permanently.
name of the queue to delete.
Response data for the Queue delete operation.
Gets the properties of a storage account’s Queue service, including properties for Storage Analytics and CORS (Cross-Origin Resource Sharing) rules.
Response data including the queue service properties.
Creates a QueueClient object.
a new QueueClient
Retrieves statistics related to replication for the Queue service. It is only available on the secondary location endpoint when read-access geo-redundant replication is enabled for the storage account.
Response data for get statistics the operation.
Returns an async iterable iterator to list all the queues under the specified account.
.byPage() returns an async iterable iterator to list the queues in pages.
An asyncIterableIterator that supports paging.
Sets properties for a storage account’s Queue service endpoint, including properties for Storage Analytics, CORS (Cross-Origin Resource Sharing) rules and soft delete settings.
Response data for the Set Properties operation.
Creates an instance of QueueServiceClient.
Account connection string or a SAS connection string of an Azure storage account.
[ Note - Account connection string can only be used in NODE.JS runtime. ]
Account connection string example -
DefaultEndpointsProtocol=https;AccountName=myaccount;AccountKey=accountKey;EndpointSuffix=core.windows.net
SAS connection string example -
BlobEndpoint=https://myaccount.blob.core.windows.net/;QueueEndpoint=https://myaccount.queue.core.windows.net/;FileEndpoint=https://myaccount.file.core.windows.net/;TableEndpoint=https://myaccount.table.core.windows.net/;SharedAccessSignature=sasString
A new QueueServiceClient object from the given connection string.
Generated using TypeDoc
A QueueServiceClient represents a URL to the Azure Storage Queue service allowing you to manipulate queues.
QueueServiceClient