리스트 정렬
오름차순
az group list --query "sort_by([], &name)" -o table
오름차순 + 특정 문자열 포함
az group list --query "[?contains(name, 'string')] | sort_by(@, &name)" -o table
내림차순
az group list --query "sort_by([], &name)[::-1]" -o table
내림차순 + 특정 문자열 포함
az group list --query "[?contains(name, 'string')] | sort_by(@, &name)[::-1]" -o table
정렬 및 특정 필드 표시
az resource list -g learn-rg --query "sort_by(@, &name && type) | [*].{Name:name, ResourceGroup:resourceGroup, Location:location, Type:type, Status:provisioningState}" -o table
지역 (Location) 리스트
az account list-locations -o table
리소스 검색 (Azure Resource Graph)
특정 리소스 ID
(az graph query -q "Resources | where type == '<resource provider>' and name contains '<string>' | project id" | ConvertFrom-Json).data[0]