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 group
> 管理资源组和模板部署。
> 属于 `azure-cli`(也称为 `az`)。
> 更多信息:<https://learn.microsoft.com/cli/azure/group>。
- 创建一个新的资源组:
`az group create --name {{name}} --location {{location}}`
- 检查资源组是否存在:
`az group exists --name {{name}}`
- 删除一个资源组:
`az group delete --name {{name}}`
- 等待资源组满足某个条件:
`az group wait --name {{name}} --{{created|deleted|exists|updated}}`