Forrest logo
back to context overview

az-storage-table

List of commands for az-storage-table:

  • az-storage-table:tldr:07163 az-storage-table: Generate a shared access signature for the table.
    $ az storage table generate-sas --account-name ${storage_account_name} --name ${table_name} --permissions ${sas_permissions} --expiry ${expiry_date} --https-only
    try on your machine
    explain this command
  • az-storage-table:tldr:3518c az-storage-table: Delete the specified table and any data it contains.
    $ az storage table delete --account-name ${storage_account_name} --name ${table_name} --fail-not-exist
    try on your machine
    explain this command
  • az-storage-table:tldr:3add2 az-storage-table: Create a new table in the storage account.
    $ az storage table create --account-name ${storage_account_name} --name ${table_name} --fail-on-exist
    try on your machine
    explain this command
  • az-storage-table:tldr:6e929 az-storage-table: List tables in a storage account.
    $ az storage table list --account-name ${storage_account_name}
    try on your machine
    explain this command
back to context overview