az storage queue

Azure에서 스토리지 큐를 관리. azure-cli의 일부 (az라고도 함). 더 많은 정보: https://learn.microsoft.com/cli/azure/storage/queue.

az storage queue create --account-name {{스토리지_계정_이름}} --name {{큐_이름}} --metadata {{큐_메타데이터}}

az storage queue generate-sas --account-name {{스토리지_계정_이름}} --name {{큐_이름}} --permissions {{큐_권한}} --expiry {{만료_날짜}} --https-only

az storage queue list --prefix {{필터_접두사}} --account-name {{스토리지_계정_이름}}

az storage queue delete --account-name {{스토리지_계정_이름}} --name {{큐_이름}} --fail-not-exist