Forrest logo
back to context overview

az-storage-queue

List of commands for az-storage-queue:

  • az-storage-queue:tldr:80671 az-storage-queue: List queues in a storage account.
    $ az storage queue list --prefix ${filter_prefix} --account-name ${storage_account_name}
    try on your machine
    explain this command
  • az-storage-queue:tldr:a0e09 az-storage-queue: Create a queue.
    $ az storage queue create --account-name ${storage_account_name} --name ${queue_name} --metadata ${queue_metadata}
    try on your machine
    explain this command
  • az-storage-queue:tldr:b057b az-storage-queue: Generate a shared access signature for the queue.
    $ az storage queue generate-sas --account-name ${storage_account_name} --name ${queue_name} --permissions ${queue_permissions} --expiry ${expiry_date} --https-only
    try on your machine
    explain this command
  • az-storage-queue:tldr:bdec4 az-storage-queue: Delete the specified queue and any messages it contains.
    $ az storage queue delete --account-name ${storage_account_name} --name ${queue_name} --fail-not-exist
    try on your machine
    explain this command
back to context overview