add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,21 @@
# az 存储表
> 管理 Azure 中的 NoSQL 键值存储。
> 作为 `azure-cli`(也称为 `az`)的一部分。
> 更多信息:<https://learn.microsoft.com/cli/azure/storage/table>。
- 在存储帐户中创建新表:
`az storage table create --account-name {{storage_account_name}} --name {{table_name}} --fail-on-exist`
- 为表生成共享访问签名:
`az storage table generate-sas --account-name {{storage_account_name}} --name {{table_name}} --permissions {{sas_permissions}} --expiry {{expiry_date}} --https-only`
- 列出存储帐户中的表:
`az storage table list --account-name {{storage_account_name}}`
- 删除指定的表及其包含的任何数据:
`az storage table delete --account-name {{storage_account_name}} --name {{table_name}} --fail-not-exist`