az storage table
all
Manage NoSQL key-value storage in Azure. Part of `azure-cli` (also known as `az`).
More info →Options (1)
-n, --namebooleanCreate a new table in the storage account
Example:
az storage table create --account-name {{storage_account_name}} {{[-n|--name]}} {{table_name}} --fail-on-existExamples (4)
Create a new table in the storage account
az storage table create --account-name storage_account_name [-n|--name] table_name --fail-on-existGenerate a shared access signature for the table
az storage table generate-sas --account-name storage_account_name [-n|--name] table_name --permissions sas_permissions --expiry expiry_date --https-onlyList tables in a storage account
az storage table list --account-name storage_account_nameDelete the specified table and any data it contains
az storage table delete --account-name storage_account_name [-n|--name] table_name --fail-not-existmade by @shridhargupta | data from tldr-pages