1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-10 00:55:52 +02:00

az-storage-table: add page (#8734)

This commit is contained in:
WhileLoop 2022-10-08 13:45:55 -07:00 committed by GitHub
parent c2b2ce07b4
commit 41b08169a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,21 @@
# az storage table
> Manage NoSQL key-value storage in Azure.
> Part of `azure-cli`.
> More information: <https://learn.microsoft.com/cli/azure/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`
- 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`
- List tables in a storage account:
`az storage table list --account-name {{storage_account_name}}`
- Delete the specified table and any data it contains:
`az storage table delete --account-name {{storage_account_name}} --name {{table_name}} --fail-not-exist`