az-*: add Korean translation (#13714)

This commit is contained in:
HoJeong Im
2024-09-22 01:44:43 +09:00
committed by GitHub
parent 7f1ecba98c
commit c99a78991d
25 changed files with 543 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# az storage account
> Azure에서 스토리지 계정을 관리.
> `azure-cli`의 일부 (`az`라고도 함).
> 더 많은 정보: <https://learn.microsoft.com/cli/azure/storage/account>.
- 스토리지 계정 생성:
`az storage account create --name {{스토리지_계정_이름}} --resource-group {{azure_리소스_그룹}} --location {{azure_위치}} --sku {{storage_account_sku}}`
- 특정 스토리지 계정에 대한 공유 액세스 서명을 생성:
`az storage account generate-sas --account-name {{스토리지_계정_이름}} --name {{계정_이름}} --permissions {{sas_permissions}} --expiry {{만료_날짜}} --services {{스토리지_서비스}} --resource-types {{리소스_타입}}`
- 스토리지 계정 나열:
`az storage account list --resource-group {{azure_리소스_그룹}}`
- 특정 저장소 계정 삭제:
`az storage account delete --name {{스토리지_계정_이름}} --resource-group {{azure_리소스_그룹}}`