diff --git a/pages.ko/common/az-cognitiveservices.md b/pages.ko/common/az-cognitiveservices.md new file mode 100644 index 0000000000..f852b1f8c4 --- /dev/null +++ b/pages.ko/common/az-cognitiveservices.md @@ -0,0 +1,25 @@ +# az cognitiveservices + +> Azure Cognitive Services 계정을 관리하는 명령어. +> `azure-cli`의 일부 (`az`). +> 더 많은 정보: . + +- 특정 지역에 확인 없이 API Cognitive Services 계정 생성: + +`az cognitiveservices account create {{[-n|--name]}} {{계정_이름}} {{[-g|--resource-group]}} {{리소스_그룹}} --kind {{API_이름}} {{[-l|--location]}} {{location}} --sku {{sku_이름}} --yes` + +- Azure Cognitive Services 계정 사용량 조회: + +`az cognitiveservices account list-usage {{[-n|--name]}} {{계정_이름}} {{[-g|--resource-group]}} {{리소스_그룹}}` + +- Azure Cognitive Services 계정에 배포 생성: + +`az cognitiveservices account deployment create {{[-n|--name]}} {{계정_이름}} {{[-g|--resource-group]}} {{리소스_그룹}} --deployment-name {{배포_이름}} --model-name {{모델_이름}} --model-version "{{모델_버전}}" --model-format {{포맷_이름}}` + +- Azure Cognitive Services 계정에 커밋 플랜 생성: + +`az cognitiveservices account commitment-plan create {{[-n|--name]}} {{계정_이름}} {{[-g|--resource-group]}} {{리소스_그룹}} --commitment-plan-name "{{plan_name}}" --hosting-model "{{호스팅_모델}}" --plan-type "{{플랜_타입}}" --auto-renew {{false|true}}` + +- Azure Cognitive Services 계정에서 커밋 플랜 삭제: + +`az cognitiveservices account commitment-plan delete {{[-g|--resource-group]}} {{리소스_그룹}} {{[-n|--name]}} {{계정_이름}} --commitment-plan-name "{{플랜_이름}}"` diff --git a/pages.ko/common/az-container.md b/pages.ko/common/az-container.md new file mode 100644 index 0000000000..de59ff508d --- /dev/null +++ b/pages.ko/common/az-container.md @@ -0,0 +1,33 @@ +# az container + +> Azure Container Instances 관리. +> `azure-cli`의 일부 (`az`). +> 더 많은 정보: . + +- 컨테이너 그룹에 컨테이너 생성: + +`az container create {{[-g|--resource-group]}} {{리소스_그룹}} {{[-n|--name]}} {{이름}} --image {{이미지_이름}} {{[-os|--os-type]}} {{windows|linux}} --cpu {{CPU_코어_개수}} --memory {{memory_in_GB}}` + +- 실행 중인 컨테이너에서 명령어 실행: + +`az container exec {{[-g|--resource-group]}} {{리소스_그룹}} {{[-n|--name]}} {{컨테이너_그룹_이름}} --exec-command "{{명령어}}"` + +- 컨테이너 그룹 안 컨테이너 로그 확인: + +`az container logs {{[-n|--name]}} {{이름}} {{[-g|--resource-group]}} {{리소스_그룹}}` + +- 컨테이너 그룹 상세 정보 조회: + +`az container show {{[-n|--name]}} {{이름}} {{[-g|--resource-group]}} {{리소스_그룹}}` + +- 컨테이너 그룹 내 모든 컨테이너 시작: + +`az container start {{[-n|--name]}} {{이름}} {{[-g|--resource-group]}} {{리소스_그룹}}` + +- 컨테이너 그룹 내 모든 컨테이너 중지: + +`az container stop {{[-n|--name]}} {{이름}} {{[-g|--resource-group]}} {{리소스_그룹}}` + +- 컨테이너 그룹 삭제: + +`az container delete {{[-n|--name]}} {{이름}} {{[-g|--resource-group]}} {{리소스_그룹}}` diff --git a/pages.ko/common/az-quantum.md b/pages.ko/common/az-quantum.md new file mode 100644 index 0000000000..687fb1da76 --- /dev/null +++ b/pages.ko/common/az-quantum.md @@ -0,0 +1,36 @@ +# az quantum + +> Manage Azure Quantum 워크스페이스를 관리하고 양자 작업을 제출하는 명령어(프리뷰, quantum 확장이 필요). +> 더 많은 정보: . + +- 새로운 Azure Quantum 워크스페이스 생성: + +`az quantum workspace create {{[-g|--resource-group]}} {{리소스_그룹}} {{[-l|--location]}} {{위치}} {{[-w|--workspace-name]}} {{워크스페이스}} {{[-a|--storage-account]}} {{내_스토리지_계정_이름}}` + +- 모든 Azure Quantum 워크스페이스 목록 조회: + +`az quantum workspace list` + +- 기본 Azure Quantum 워크스페이스 설정: + +`az quantum workspace set {{[-g|--resource-group]}} {{리소스_그룹}} {{[-w|--workspace-name]}} {{워크스페이스}}` + +- 특정 타겟에 QIR 양자 작업 제출: + +`az quantum job submit {{[-g|--resource-group]}} {{리소스_그룹}} {{[-w|--workspace-name]}} {{워크스페이스}} {{[-l|--location]}} {{위치}} {{[-t|--target-id]}} {{Id}} --job-name {{작업}} --job-input-file {{QirBitcode.bc}} --job-input-format {{qir.v1}}` + +- Quantum 워크스페이스 내 모든 작업 목록 조회: + +`az quantum job list {{[-g|--resource-group]}} {{리소스_그룹}} {{[-l|--location]}} {{위치}} {{[-w|--workspace-name]}} {{워크스페이스}}` + +- 양자 작업 결과 출력: + +`az quantum job output {{[-g|--resource-group]}} {{리소스_그룹}} {{[-w|--workspace-name]}} {{워크스페이스}} --job-id {{작업}}` + +- 특정 지역에서 사용 가능한 제공자 목록 조회: + +`az quantum offerings list {{[-l|--location]}} {{Location}}` + +- 작업 제출을 위한 기본 타겟 설정: + +`az quantum target set {{[-t|--target-id]}} {{아이디}}`