Forrest logo
back to the az tool

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

The command "az storage table list --account-name ${storage_account_name}" is used in the Azure CLI (Command-Line Interface) to list all the tables present in a storage account.

Here is a breakdown of the command:

  • "az storage table list": This is the main command that instructs Azure CLI to list the tables in a storage account.
  • "--account-name": This is an option used to specify the name of the storage account for which the tables need to be listed.
  • "${storage_account_name}": This is a placeholder or variable that represents the name of the storage account. The variable should be replaced with the actual name of the storage account in order for the command to work correctly.

To use this command, you need to replace "${storage_account_name}" with the actual name of the storage account. For example, if your storage account name is "mytablestorage", the command would look like "az storage table list --account-name mytablestorage".

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the az tool