az storage table

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

az storage table create --account-name {{storage_account_name}} --name {{table_name}} --fail-on-exist

az storage table generate-sas --account-name {{storage_account_name}} --name {{table_name}} --permissions {{sas_permissions}} --expiry {{expiry_date}} --https-only

az storage table list --account-name {{storage_account_name}}

az storage table delete --account-name {{storage_account_name}} --name {{table_name}} --fail-not-exist