Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

26
az-storage-table Normal file
View File

@@ -0,0 +1,26 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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>.
- 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`