logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Storage Queue - Manage Azure Queues | Online Free DevTools by Hexmos

Manage Azure storage queues with az-storage-queue. Create, list, and delete queues, generate SAS tokens for secure access. Free online tool, no registration required.

az-storage-queue

Manage storage queues in Azure. Part of azure-cli (also known as az). More information: https://learn.microsoft.com/cli/azure/storage/queue.

  • Create a queue:

az storage queue create --account-name {{storage_account_name}} {{[-n|--name]}} {{queue_name}} --metadata {{queue_metadata}}

  • Generate a shared access signature for the queue:

az storage queue generate-sas --account-name {{storage_account_name}} {{[-n|--name]}} {{queue_name}} --permissions {{queue_permissions}} --expiry {{expiry_date}} --https-only

  • List queues in a storage account:

az storage queue list --prefix {{filter_prefix}} --account-name {{storage_account_name}}

  • Delete the specified queue and any messages it contains:

az storage queue delete --account-name {{storage_account_name}} {{[-n|--name]}} {{queue_name}} --fail-not-exist

See Also