az storage table

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

az storage table create --account-name {{스토리지_계정_이름}} --name {{테이블_이름}} --fail-on-exist

az storage table generate-sas --account-name {{스토리지_계정_이름}} --name {{테이블_이름}} --permissions {{sas_permissions}} --expiry {{만료_날짜}} --https-only

az storage table list --account-name {{스토리지_계정_이름}}

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