az portal dashboard

참고

이 참조는 Azure CLI 포털 확장의 일부이며 버전 2.3.1 이상이 필요합니다. az portal dashboard 명령을 처음 실행할 때 확장이 자동으로 설치됩니다. 확장에 대해 자세히 알아보세요.

포털 대시보드를 관리합니다.

명령

az portal dashboard create

대시보드를 만들거나 업데이트합니다.

az portal dashboard delete

대시보드를 삭제합니다.

az portal dashboard import

JSON 파일에서 대시보드를 가져옵니다.

az portal dashboard list

구독 또는 리소스 그룹 내의 대시보드를 나열합니다.

az portal dashboard show

단일 대시보드에 대한 세부 정보를 가져옵니다.

az portal dashboard update

기존 대시보드를 업데이트합니다.

az portal dashboard create

대시보드를 만들거나 업데이트합니다.

az portal dashboard create --input-path
                           --name
                           --resource-group
                           [--location]
                           [--tags]

예제

대시보드 만들기 또는 업데이트

az portal dashboard create --location "eastus" --name "testDashboard" \
--resource-group "testRG" --input-path "/src/json/properties.json" \
--tags aKey=aValue anotherKey=anotherValue

필수 매개 변수

--input-path

대시보드 속성 JSON 파일의 경로입니다.

--name -n

대시보드의 이름입니다.

--resource-group -g

리소스 그룹의 이름.

선택적 매개 변수

--location -l

위치입니다. 값 출처: az account list-locations. az configure --defaults location=<location>을 사용하여 기본 위치를 구성할 수 있습니다.

--tags

공백으로 구분된 태그: key[=value] [key[=value] ...]. ""를 사용하여 기존 태그를 지웁니다.

az portal dashboard delete

대시보드를 삭제합니다.

az portal dashboard delete --name
                           --resource-group
                           [--yes]

예제

대시보드 삭제

az portal dashboard delete --name "testDashboard" --resource-group "testRG"

필수 매개 변수

--name -n

대시보드의 이름입니다.

--resource-group -g

리소스 그룹의 이름.

선택적 매개 변수

--yes -y

확인을 묻는 메시지를 표시하지 마세요.

az portal dashboard import

JSON 파일에서 대시보드를 가져옵니다.

az portal dashboard import --input-path
                           --resource-group
                           [--name]

예제

대시보드 가져오기

az portal dashboard import --name "testDashboard" --resource-group "testRG" \
--input-path "/src/json/dashboard.json"

필수 매개 변수

--input-path

대시보드 json 파일의 경로입니다.

--resource-group -g

리소스 그룹의 이름.

선택적 매개 변수

--name -n

대시보드의 이름입니다.

az portal dashboard list

구독 또는 리소스 그룹 내의 대시보드를 나열합니다.

az portal dashboard list [--resource-group]

예제

resourceGroup의 모든 대시보드 나열

az portal dashboard list --resource-group "testRG"

구독의 모든 대시보드 나열

az portal dashboard list

선택적 매개 변수

--resource-group -g

리소스 그룹의 이름.

az portal dashboard show

단일 대시보드에 대한 세부 정보를 가져옵니다.

az portal dashboard show --name
                         --resource-group

예제

대시보드 받기

az portal dashboard show --name "testDashboard" --resource-group "testRG"

필수 매개 변수

--name -n

대시보드의 이름입니다.

--resource-group -g

리소스 그룹의 이름입니다. az configure --defaults group=<name>을 사용하여 기본 그룹을 구성할 수 있습니다.

az portal dashboard update

기존 대시보드를 업데이트합니다.

az portal dashboard update --input-path
                           --name
                           --resource-group

예제

대시보드 업데이트

az portal dashboard update --name "testDashboard" --resource-group "testRG" \
--input-path "/src/json/properties.json"

필수 매개 변수

--input-path

대시보드 속성 JSON 파일의 경로입니다.

--name -n

대시보드의 이름입니다.

--resource-group -g

리소스 그룹의 이름.