Azure Parameters – ちょっと知りたい リージョン名とかSKUとか
2019-07-02
2019-07-25

Azure Parameters というサービスがあるわけではありません。
インフラ構成を自動化するときに、クラウドで決められているパラメータ名を調べるのに手間が掛かります。ぱっと調べればいいことなのですが、必要になるときに都度思い出すといろいろと時間がかかるのでリストにしてみました。
準備してあるのは、取得するコマンド、生データ、整形したデータをセットです。今後、必要に応じて追加します。
これを残しておこうと思ったきっかけは、どんなイメージが、どんなパッチバージョンで利用できるのかを調べたかったときにaz vm image list –all を実行したときにとても時間がかかったので……検索するときもデータのイメージがあるといいと思うので。
注意)これらの情報は生ものなので、最終的には自分で実行してください。
目次
ここで分かること
- パラメータを取得するコマンド
- jsonだと人が読みにくいので、jq で整形する(出力項目は勝手……)
- 生データがダウンロードできる
- 整形データがダウンロードできる
- ぱっと見れるように、記事の中にも結果をリストしておく
おまけ
- time zone の名前へのリンク クリック 2019/7/9 追加
- Tokyo Standard Time (UTC+09:00) Osaka, Sapporo, Tokyo
実行環境
wls + ubuntu 18.4 + jq + AzureCli
取得結果
# | 対象データ | 取得にかかる時間 | 生データ(json) | 整形データ(tsv) |
1 | リージョン名 region az account list-locations | real 0m6.651s user 0m0.906s sys 0m0.469s | az_account_list-locations.json | az_account_list-locations.tsv |
2 | 特定リージョン(東日本)のVMの利用できるサイズ az vm list-sizes | real 0m6.935s user 0m1.109s sys 0m0.625s | az_vm_list-size_japaneast.json | az_vm_list-sizes_japaneast.tsv |
3 | 特定リージョン(東日本)のVMの利用できるSKU az vm list-skus | real 0m12.388s user 0m5.578s sys 0m0.922s | az_vm_list-skus_japaneast.json | az_vm_list-skus_japaneast.tsv |
4 | VMとして利用できるイメージの一覧(標準出力) az vm image list | real 0m7.159s user 0m1.156s sys 0m0.578s | az_vm_image_list.json | az_vm_image_list.tsv |
5 | VMとして利用できるイメージの一覧(全出力) az vm image list -all | real 135m17.558s user 6m42.656s sys 1m4.469s | az_vm_image_list_all.json | az_vm_image_list_all.tsv |
6 | VMの拡張機能で利用できるイメージの一覧 | real 21m51.382s user 1m18.375s sys 0m13.250s | az_vm_extension_image_list_japaneast.json | az_vm_extension_image_list_japaneast.tsv |
リージョン名を調べる
コマンド
az account list-locations | jq -r '.[] | [.displayName, .name] | @tsv' | column -t -s $'t'
項目
表示名, パラメータ名
結果
time az account list-locations | jq -r '.[] | [.displayName, .name] | @tsv' | column -t -s $'t'
East Asia eastasia
Southeast Asia southeastasia
Central US centralus
East US eastus
East US 2 eastus2
West US westus
North Central US northcentralus
South Central US southcentralus
North Europe northeurope
West Europe westeurope
Japan West japanwest
Japan East japaneast
Brazil South brazilsouth
Australia East australiaeast
Australia Southeast australiasoutheast
South India southindia
Central India centralindia
West India westindia
Canada Central canadacentral
Canada East canadaeast
UK South uksouth
UK West ukwest
West Central US westcentralus
West US 2 westus2
Korea Central koreacentral
Korea South koreasouth
France Central francecentral
France South francesouth
Australia Central australiacentral
Australia Central 2 australiacentral2
UAE Central uaecentral
UAE North uaenorth
South Africa North southafricanorth
South Africa West southafricawest
real 0m6.651s
user 0m0.906s
sys 0m0.469s
仮想マシンの利用できるサイズを調べる
コマンド
region="japaneast" az vm list-sizes -l $region | jq -r '.[] | [.name, .numberOfCores, .memoryInMb, .osDiskSizeInMb, .resourceDiskSizeInMb] | @tsv' | column -t -s $'t'
項目
サイズ名, コア数, メモリ(MB), OSディスクサイズ(MB), リソースディスクサイズ(MB)
結果
region="japaneast" time az vm list-sizes -l $region | jq -r '.[] | [.name, .numberOfCores, .memoryInMb, .osDiskSizeInMb, .resourceDiskSizeInMb] | @tsv' | sort | column -t -s $'t' Basic_A0 1 768 1047552 20480 Basic_A1 1 1792 1047552 40960 Basic_A2 2 3584 1047552 61440 Basic_A3 4 7168 1047552 122880 Basic_A4 8 14336 1047552 245760 Standard_A0 1 768 1047552 20480 Standard_A1 1 1792 1047552 71680 Standard_A1_v2 1 2048 1047552 10240 Standard_A2 2 3584 1047552 138240 Standard_A2_v2 2 4096 1047552 20480 Standard_A2m_v2 2 16384 1047552 20480 Standard_A3 4 7168 1047552 291840 Standard_A4 8 14336 1047552 619520 Standard_A4_v2 4 8192 1047552 40960 Standard_A4m_v2 4 32768 1047552 40960 Standard_A5 2 14336 1047552 138240 Standard_A6 4 28672 1047552 291840 Standard_A7 8 57344 1047552 619520 Standard_A8_v2 8 16384 1047552 81920 Standard_A8m_v2 8 65536 1047552 81920 Standard_B12ms 12 49152 1047552 98304 Standard_B16ms 16 65536 1047552 131072 Standard_B1ls 1 512 1047552 1024 Standard_B1ms 1 2048 1047552 4096 Standard_B1s 1 1024 1047552 2048 Standard_B20ms 20 81920 1047552 163840 Standard_B2ms 2 8192 1047552 16384 Standard_B2s 2 4096 1047552 8192 Standard_B4ms 4 16384 1047552 32768 Standard_B8ms 8 32768 1047552 65536 Standard_D1 1 3584 1047552 51200 Standard_D11 2 14336 1047552 102400 Standard_D11_v2 2 14336 1047552 102400 Standard_D11_v2_Promo 2 14336 1047552 102400 Standard_D12 4 28672 1047552 204800 Standard_D12_v2 4 28672 1047552 204800 Standard_D12_v2_Promo 4 28672 1047552 204800 Standard_D13 8 57344 1047552 409600 Standard_D13_v2 8 57344 1047552 409600 Standard_D13_v2_Promo 8 57344 1047552 409600 Standard_D14 16 114688 1047552 819200 Standard_D14_v2 16 114688 1047552 819200 Standard_D14_v2_Promo 16 114688 1047552 819200 Standard_D15_v2 20 143360 1047552 1024000 Standard_D16_v3 16 65636 1047552 409600 Standard_D16s_v3 16 65536 1047552 131072 Standard_D1_v2 1 3584 1047552 51200 Standard_D2 2 7168 1047552 102400 Standard_D2_v2 2 7168 1047552 102400 Standard_D2_v2_Promo 2 7168 1047552 102400 Standard_D2_v3 2 8192 1047552 51200 Standard_D2s_v3 2 8192 1047552 16384 Standard_D3 4 14336 1047552 204800 Standard_D32_v3 32 131072 1047552 819200 Standard_D32s_v3 32 131072 1047552 262144 Standard_D3_v2 4 14336 1047552 204800 Standard_D3_v2_Promo 4 14336 1047552 204800 Standard_D4 8 28672 1047552 409600 Standard_D48_v3 48 196608 1047552 1228800 Standard_D48s_v3 48 196608 1047552 393216 Standard_D4_v2 8 28672 1047552 409600 Standard_D4_v2_Promo 8 28672 1047552 409600 Standard_D4_v3 4 16384 1047552 102400 Standard_D4s_v3 4 16384 1047552 32768 Standard_D5_v2 16 57344 1047552 819200 Standard_D5_v2_Promo 16 57344 1047552 819200 Standard_D64_v3 64 262144 1047552 1638400 Standard_D64s_v3 64 262144 1047552 524288 Standard_D8_v3 8 32768 1047552 204800 Standard_D8s_v3 8 32768 1047552 65536 Standard_DS1 1 3584 1047552 7168 Standard_DS11 2 14336 1047552 28672 Standard_DS11-1_v2 2 14336 1047552 28672 Standard_DS11_v2 2 14336 1047552 28672 Standard_DS11_v2_Promo 2 14336 1047552 28672 Standard_DS12 4 28672 1047552 57344 Standard_DS12-1_v2 4 28672 1047552 57344 Standard_DS12-2_v2 4 28672 1047552 57344 Standard_DS12_v2 4 28672 1047552 57344 Standard_DS12_v2_Promo 4 28672 1047552 57344 Standard_DS13 8 57344 1047552 114688 Standard_DS13-2_v2 8 57344 1047552 114688 Standard_DS13-4_v2 8 57344 1047552 114688 Standard_DS13_v2 8 57344 1047552 114688 Standard_DS13_v2_Promo 8 57344 1047552 114688 Standard_DS14 16 114688 1047552 229376 Standard_DS14-4_v2 16 114688 1047552 229376 Standard_DS14-8_v2 16 114688 1047552 229376 Standard_DS14_v2 16 114688 1047552 229376 Standard_DS14_v2_Promo 16 114688 1047552 229376 Standard_DS15_v2 20 143360 1047552 286720 Standard_DS1_v2 1 3584 1047552 7168 Standard_DS2 2 7168 1047552 14336 Standard_DS2_v2 2 7168 1047552 14336 Standard_DS2_v2_Promo 2 7168 1047552 14336 Standard_DS3 4 14336 1047552 28672 Standard_DS3_v2 4 14336 1047552 28672 Standard_DS3_v2_Promo 4 14336 1047552 28672 Standard_DS4 8 28672 1047552 57344 Standard_DS4_v2 8 28672 1047552 57344 Standard_DS4_v2_Promo 8 28672 1047552 57344 Standard_DS5_v2 16 57344 1047552 114688 Standard_DS5_v2_Promo 16 57344 1047552 114688 Standard_E16-4s_v3 16 131072 1047552 262144 Standard_E16-8s_v3 16 131072 1047552 262144 Standard_E16_v3 16 131072 1047552 409600 Standard_E16s_v3 16 131072 1047552 262144 Standard_E20_v3 20 163840 1047552 512000 Standard_E20s_v3 20 163840 1047552 327680 Standard_E2_v3 2 16384 1047552 51200 Standard_E2s_v3 2 16384 1047552 32768 Standard_E32-16s_v3 32 262144 1047552 524288 Standard_E32-8s_v3 32 262144 1047552 524288 Standard_E32_v3 32 262144 1047552 819200 Standard_E32s_v3 32 262144 1047552 524288 Standard_E4-2s_v3 4 32768 1047552 65536 Standard_E48_v3 48 393216 1047552 1228800 Standard_E48s_v3 48 393216 1047552 786432 Standard_E4_v3 4 32768 1047552 102400 Standard_E4s_v3 4 32768 1047552 65536 Standard_E64-16s_v3 64 442368 1047552 884736 Standard_E64-32s_v3 64 442368 1047552 884736 Standard_E64_v3 64 442368 1047552 1638400 Standard_E64i_v3 64 442368 1047552 1638400 Standard_E64is_v3 64 442368 1047552 884736 Standard_E64s_v3 64 442368 1047552 884736 Standard_E8-2s_v3 8 65536 1047552 131072 Standard_E8-4s_v3 8 65536 1047552 131072 Standard_E8_v3 8 65536 1047552 204800 Standard_E8s_v3 8 65536 1047552 131072 Standard_F1 1 2048 1047552 16384 Standard_F16 16 32768 1047552 262144 Standard_F16s 16 32768 1047552 65536 Standard_F16s_v2 16 32768 1047552 131072 Standard_F1s 1 2048 1047552 4096 Standard_F2 2 4096 1047552 32768 Standard_F2s 2 4096 1047552 8192 Standard_F2s_v2 2 4096 1047552 16384 Standard_F32s_v2 32 65536 1047552 262144 Standard_F4 4 8192 1047552 65536 Standard_F48s_v2 48 98304 1047552 393216 Standard_F4s 4 8192 1047552 16384 Standard_F4s_v2 4 8192 1047552 32768 Standard_F64s_v2 64 131072 1047552 524288 Standard_F72s_v2 72 147456 1047552 589824 Standard_F8 8 16384 1047552 131072 Standard_F8s 8 16384 1047552 32768 Standard_F8s_v2 8 16384 1047552 65536 Standard_G1 2 28672 1047552 393216 Standard_G2 4 57344 1047552 786432 Standard_G3 8 114688 1047552 1572864 Standard_G4 16 229376 1047552 3145728 Standard_G5 32 458752 1047552 6291456 Standard_GS1 2 28672 1047552 57344 Standard_GS2 4 57344 1047552 114688 Standard_GS3 8 114688 1047552 229376 Standard_GS4 16 229376 1047552 458752 Standard_GS4-4 16 229376 1047552 458752 Standard_GS4-8 16 229376 1047552 458752 Standard_GS5 32 458752 1047552 917504 Standard_GS5-16 32 458752 1047552 917504 Standard_GS5-8 32 458752 1047552 917504 Standard_H16 16 114688 1047552 2048000 Standard_H16_Promo 16 114688 1047552 2048000 Standard_H16m 16 229376 1047552 2048000 Standard_H16m_Promo 16 229376 1047552 2048000 Standard_H16mr 16 229376 1047552 2048000 Standard_H16mr_Promo 16 229376 1047552 2048000 Standard_H16r 16 114688 1047552 2048000 Standard_H16r_Promo 16 114688 1047552 2048000 Standard_H8 8 57344 1047552 1024000 Standard_H8_Promo 8 57344 1047552 1024000 Standard_H8m 8 114688 1047552 1024000 Standard_H8m_Promo 8 114688 1047552 1024000 Standard_L16s 16 131072 1047552 2874368 Standard_L32s 32 262144 1047552 5765120 Standard_L4s 4 32768 1047552 694272 Standard_L8s 8 65536 1047552 1421312 Standard_M128 128 2048000 1047552 16384000 Standard_M128-32ms 128 3891200 1047552 4096000 Standard_M128-64ms 128 3891200 1047552 4096000 Standard_M128m 128 3891200 1047552 16384000 Standard_M128ms 128 3891200 1047552 4096000 Standard_M128s 128 2048000 1047552 4096000 Standard_M16-4ms 16 448000 1047552 512000 Standard_M16-8ms 16 448000 1047552 512000 Standard_M16ms 16 448000 1047552 512000 Standard_M32-16ms 32 896000 1047552 1024000 Standard_M32-8ms 32 896000 1047552 1024000 Standard_M32ls 32 262144 1047552 1024000 Standard_M32ms 32 896000 1047552 1024000 Standard_M32ts 32 196608 1047552 1024000 Standard_M64 64 1024000 1047552 8192000 Standard_M64-16ms 64 1792000 1047552 2048000 Standard_M64-32ms 64 1792000 1047552 2048000 Standard_M64ls 64 524288 1047552 2048000 Standard_M64m 64 1792000 1047552 8192000 Standard_M64ms 64 1792000 1047552 2048000 Standard_M64s 64 1024000 1047552 2048000 Standard_M8-2ms 8 224000 1047552 256000 Standard_M8-4ms 8 224000 1047552 256000 Standard_M8ms 8 224000 1047552 256000 Standard_NC12s_v3 12 229376 1047552 688128 Standard_NC24rs_v3 24 458752 1047552 1376256 Standard_NC24s_v3 24 458752 1047552 1376256 Standard_NC6s_v3 6 114688 1047552 344064 Standard_NV12 12 114688 1047552 696320 Standard_NV12_Promo 12 114688 1047552 696320 Standard_NV24 24 229376 1047552 1474560 Standard_NV24_Promo 24 229376 1047552 1474560 Standard_NV6 6 57344 1047552 389120 Standard_NV6_Promo 6 57344 1047552 389120 real 0m6.935s user 0m1.109s sys 0m0.625s
仮想マシンのskuを調べる
コマンド
region="japaneast" az vm list-skus -l $region | jq -r '.[] | select(.resourceType == "virtualMachines") | {name: .name, size: .size, capability: [.capabilities[] | select(.name == "ACUs" or .name == "vCPUs" or .name == "MemoryGB" or .name == "OSVhdSizeMB" or .name == "MaxResourceVolumeMB" or .name == "MaxDataDiskCount" )] } | {name: .name, ACUs: .capability[5].value, vCPUs: .capability[2].value, MemoryGB: .capability[3].value, OSVhdSizeMB: .capability[1].value, MaxResourceVolumeMB: .capability[0].value, MaxDataDiskCount: .capability[4].value} | [.name, .ACUs, .vCPUs, .MemoryGB, .OSVhdSizeMB, .MaxResourceVolumeMB, .MaxDataDiskCount] |@tsv ' | sort | column -t -s $'t'
注意事項
・強引に書いているので、Bシリーズがずれます。あと、自分の見たいものだけいったん入れています。
項目
sku名, ACUs, コア数, メモリ(GB), OSディスク(MB), 最大リソースデータサイズ(MB), 最大データディスク数
結果
region="japaneast" time az vm list-skus -l $region | jq -r '.[] | select(.resourceType == "virtualMachines") | {name: .name, size: .size, capability: [.capabilities[] | select(.name == "ACUs" or .name == "vCPUs" or .name == "MemoryGB" or .name == "OSVhdSizeMB" or .name == "MaxResourceVolumeMB" or .name == "MaxDataDiskCount" )] } | {name: .name, ACUs: .capability[5].value, vCPUs: .capability[2].value, MemoryGB: .capability[3].value, OSVhdSizeMB: .capability[1].value, MaxResourceVolumeMB: .capability[0].value, MaxDataDiskCount: .capability[4].value} | [.name, .ACUs, .vCPUs, .MemoryGB, .OSVhdSizeMB, .MaxResourceVolumeMB, .MaxDataDiskCount] |@tsv ' | sort | column -t -s $'t' Standard_A1_v2 100 1 2 1047552 10240 2 Standard_A2_v2 100 2 4 1047552 20480 4 Standard_A2m_v2 100 2 16 1047552 20480 4 Standard_A4_v2 100 4 8 1047552 40960 8 Standard_A4m_v2 100 4 32 1047552 40960 8 Standard_A8_v2 100 8 16 1047552 81920 16 Standard_A8m_v2 100 8 64 1047552 81920 16 Standard_B1ls 1 0.5 1047552 1024 2 Standard_B1ms 1 2 1047552 4096 2 Standard_B1s 1 1 1047552 2048 2 Standard_B2ms 2 8 1047552 16384 4 Standard_B2s 2 4 1047552 8192 4 Standard_B4ms 4 16 1047552 32768 8 Standard_B8ms 8 32 1047552 65536 16 Standard_D11_v2 210 2 14 1047552 102400 8 Standard_D12_v2 210 4 28 1047552 204800 16 Standard_D13_v2 210 8 56 1047552 409600 32 Standard_D14_v2 210 16 112 1047552 819200 64 Standard_D16_v3 160 16 64.1 1047552 409600 32 Standard_D16s_v3 160 16 64 1047552 131072 32 Standard_D1_v2 210 1 3.5 1047552 51200 4 Standard_D2_v2 210 2 7 1047552 102400 8 Standard_D2_v3 160 2 8 1047552 51200 4 Standard_D2s_v3 160 2 8 1047552 16384 4 Standard_D32_v3 160 32 128 1047552 819200 32 Standard_D32s_v3 160 32 128 1047552 262144 32 Standard_D3_v2 210 4 14 1047552 204800 16 Standard_D4_v2 210 8 28 1047552 409600 32 Standard_D4_v3 160 4 16 1047552 102400 8 Standard_D4s_v3 160 4 16 1047552 32768 8 Standard_D5_v2 210 16 56 1047552 819200 64 Standard_D64_v3 160 64 256 1047552 1638400 32 Standard_D64s_v3 160 64 256 1047552 524288 32 Standard_D8_v3 160 8 32 1047552 204800 16 Standard_D8s_v3 160 8 32 1047552 65536 16 Standard_DS11-1_v2 210 2 14 1047552 28672 8 Standard_DS11_v2 210 2 14 1047552 28672 8 Standard_DS12-1_v2 210 4 28 1047552 57344 16 Standard_DS12-2_v2 210 4 28 1047552 57344 16 Standard_DS12_v2 210 4 28 1047552 57344 16 Standard_DS13-2_v2 210 8 56 1047552 114688 32 Standard_DS13-4_v2 210 8 56 1047552 114688 32 Standard_DS13_v2 210 8 56 1047552 114688 32 Standard_DS14-4_v2 210 16 112 1047552 229376 64 Standard_DS14-8_v2 210 16 112 1047552 229376 64 Standard_DS14_v2 210 16 112 1047552 229376 64 Standard_DS1_v2 210 1 3.5 1047552 7168 4 Standard_DS2_v2 210 2 7 1047552 14336 8 Standard_DS3_v2 210 4 14 1047552 28672 16 Standard_DS4_v2 210 8 28 1047552 57344 32 Standard_DS5_v2 210 16 56 1047552 114688 64 Standard_E16-4s_v3 160 16 128 1047552 262144 32 Standard_E16-8s_v3 160 16 128 1047552 262144 32 Standard_E16_v3 160 16 128 1047552 409600 32 Standard_E16s_v3 160 16 128 1047552 262144 32 Standard_E20_v3 160 20 160 1047552 512000 32 Standard_E20s_v3 160 20 160 1047552 327680 32 Standard_E2_v3 160 2 16 1047552 51200 4 Standard_E2s_v3 160 2 16 1047552 32768 4 Standard_E32-16s_v3 160 32 256 1047552 524288 32 Standard_E32-8s_v3 160 32 256 1047552 524288 32 Standard_E32_v3 160 32 256 1047552 819200 32 Standard_E32s_v3 160 32 256 1047552 524288 32 Standard_E4-2s_v3 160 4 32 1047552 65536 8 Standard_E4_v3 160 4 32 1047552 102400 8 Standard_E4s_v3 160 4 32 1047552 65536 8 Standard_E64-16s_v3 160 64 432 1047552 884736 32 Standard_E64-32s_v3 160 64 432 1047552 884736 32 Standard_E64_v3 160 64 432 1047552 1638400 32 Standard_E64i_v3 160 64 432 1047552 1638400 32 Standard_E64is_v3 160 64 432 1047552 884736 32 Standard_E64s_v3 160 64 432 1047552 884736 32 Standard_E8-2s_v3 160 8 64 1047552 131072 16 Standard_E8-4s_v3 160 8 64 1047552 131072 16 Standard_E8_v3 160 8 64 1047552 204800 16 Standard_E8s_v3 160 8 64 1047552 131072 16 Standard_F1 210 1 2 1047552 16384 4 Standard_F16 210 16 32 1047552 262144 64 Standard_F16s 210 16 32 1047552 65536 64 Standard_F1s 210 1 2 1047552 4096 4 Standard_F2 210 2 4 1047552 32768 8 Standard_F2s 210 2 4 1047552 8192 8 Standard_F4 210 4 8 1047552 65536 16 Standard_F4s 210 4 8 1047552 16384 16 Standard_F8 210 8 16 1047552 131072 32 Standard_F8s 210 8 16 1047552 32768 32 real 0m12.388s user 0m5.578s sys 0m0.922s
利用できるVMのイメージ(標準出力)
コマンド
az vm image list | jq -r '.[] | [.offer, .publisher, .sku, .urn, .urnAlias, .version ] | @tsv' | column -t -s $'t'
項目
offer, publisher, sku, urn, urnAlias, version
実行結果
time az vm image list | jq -r '.[] | [.offer, .publisher, .sku, .urn, .urnAlias, .version ] | @tsv' | column -t -s $'t' You are viewing an offline list of images, use --all to retrieve an up-to-date list CentOS OpenLogic 7.5 OpenLogic:CentOS:7.5:latest CentOS latest CoreOS CoreOS Stable CoreOS:CoreOS:Stable:latest CoreOS latest Debian credativ 9 credativ:Debian:9:latest Debian latest openSUSE-Leap SUSE 42.3 SUSE:openSUSE-Leap:42.3:latest openSUSE-Leap latest RHEL RedHat 7-RAW RedHat:RHEL:7-RAW:latest RHEL latest SLES SUSE 15 SUSE:SLES:15:latest SLES latest UbuntuServer Canonical 18.04-LTS Canonical:UbuntuServer:18.04-LTS:latest UbuntuLTS latest WindowsServer MicrosoftWindowsServer 2019-Datacenter MicrosoftWindowsServer:WindowsServer:2019-Datacenter:latest Win2019Datacenter latest WindowsServer MicrosoftWindowsServer 2016-Datacenter MicrosoftWindowsServer:WindowsServer:2016-Datacenter:latest Win2016Datacenter latest WindowsServer MicrosoftWindowsServer 2012-R2-Datacenter MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:latest Win2012R2Datacenter latest WindowsServer MicrosoftWindowsServer 2012-Datacenter MicrosoftWindowsServer:WindowsServer:2012-Datacenter:latest Win2012Datacenter latest WindowsServer MicrosoftWindowsServer 2008-R2-SP1 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:latest Win2008R2SP1 latest real 0m7.159s user 0m1.156s sys 0m0.578s
利用できるVMのイメージ(全部)
コマンド
az vm image list --all | jq -r '.[] | [.offer, .publisher, .sku, .urn, .urnAlias, .version ] | @tsv' | column -t -s $'t'
項目
offer, publisher, sku, urn, urnAlias, version
実行結果
time az vm image list --all | jq -r '.[] | [.offer, .publisher, .sku, .urn, .urnAlias, .version ] | @tsv' | column -t -s $'t' You are retrieving all the images from server which could take more than a minute. To shorten the wait, provide '--publisher', '--offer' or '--sku'. Partial name search is supported. 大量にでる。約1万行 real 135m17.558s user 6m42.656s sys 1m4.469s 以降、実行結果から、urnかつ抜粋したもののリスト。 OpenLogic:CentOS:7.6:7.6.20190402 CoreOS:CoreOS:Stable:899.17.0 GitHub:GitHub-Enterprise:GitHub-Enterprise:2.17.3 MicrosoftRServer:MLServer-Ubuntu:Enterprise:9.3.026080002 MicrosoftRServer:MLServer-WS2016:Enterprise:9.3.026060001 MicrosoftRServer:MLServer-WS2016:Enterprise:9.3.026080002 MicrosoftSharePoint:MicrosoftSharePointServer:2019:16.0.10338 PuppetLabs:PuppetEnterprise:3.7:3.7.2150309 RedHat:RHEL:8:8.0.2019062020 MicrosoftSQLServer:SQL2016SP2-WS2016:Enterprise:13.2.190611 MicrosoftSQLServer:SQL2016SP2-WS2016:SQLDEV:13.2.190611 MicrosoftSQLServer:SQL2017-WS2016:Enterprise:14.1.190611 MicrosoftSQLServer:SQL2017-WS2016:SQLDEV:14.1.190611 Canonical:UbuntuServer:18.04-LTS:18.04.201906170 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:2.127.20180613 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:2.127.20180717 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:2.127.20180815 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:2.127.20180912 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:2.127.20181010 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:2.127.20181122 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:2.127.20181218 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:2.127.20190115 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:2.127.20190214 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:2.127.20190314 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:2.127.20190410 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:2.127.20190603 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:7601.24468.20190604 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-smalldisk:2.127.20180613 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-smalldisk:2.127.20180717 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-smalldisk:2.127.20180815 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-smalldisk:2.127.20180912 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-smalldisk:2.127.20181010 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-smalldisk:2.127.20181122 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-smalldisk:2.127.20181218 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-smalldisk:2.127.20190115 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-smalldisk:2.127.20190214 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-smalldisk:2.127.20190314 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-smalldisk:2.127.20190410 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-smalldisk:2.127.20190603 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-smalldisk:7601.24468.20190604 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-zhcn:2.127.20181010 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-zhcn:2.127.20181122 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-zhcn:2.127.20181218 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-zhcn:2.127.20190115 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-zhcn:2.127.20190214 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-zhcn:2.127.20190314 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-zhcn:2.127.20190410 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-zhcn:2.127.20190603 MicrosoftWindowsServer:WindowsServer:2008-R2-SP1-zhcn:7601.24468.20190604 MicrosoftWindowsServer:WindowsServer:2012-Datacenter:3.127.20180613 MicrosoftWindowsServer:WindowsServer:2012-Datacenter:3.127.20180717 MicrosoftWindowsServer:WindowsServer:2012-Datacenter:3.127.20180815 MicrosoftWindowsServer:WindowsServer:2012-Datacenter:3.127.20180912 MicrosoftWindowsServer:WindowsServer:2012-Datacenter:3.127.20181010 MicrosoftWindowsServer:WindowsServer:2012-Datacenter:3.127.20181122 MicrosoftWindowsServer:WindowsServer:2012-Datacenter:3.127.20190115 MicrosoftWindowsServer:WindowsServer:2012-Datacenter:3.127.20190214 MicrosoftWindowsServer:WindowsServer:2012-Datacenter:3.127.20190314 MicrosoftWindowsServer:WindowsServer:2012-Datacenter:3.127.20190410 MicrosoftWindowsServer:WindowsServer:2012-Datacenter:3.127.20190603 MicrosoftWindowsServer:WindowsServer:2012-Datacenter:9200.22776.20190604 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-smalldisk:3.127.20180613 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-smalldisk:3.127.20180717 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-smalldisk:3.127.20180815 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-smalldisk:3.127.20180912 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-smalldisk:3.127.20181010 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-smalldisk:3.127.20181122 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-smalldisk:3.127.20190115 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-smalldisk:3.127.20190214 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-smalldisk:3.127.20190314 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-smalldisk:3.127.20190410 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-smalldisk:3.127.20190603 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-smalldisk:9200.22776.20190604 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-zhcn:3.127.20181010 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-zhcn:3.127.20181122 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-zhcn:3.127.20190115 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-zhcn:3.127.20190214 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-zhcn:3.127.20190314 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-zhcn:3.127.20190410 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-zhcn:3.127.20190603 MicrosoftWindowsServer:WindowsServer:2012-Datacenter-zhcn:9200.22776.20190604 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:4.127.20180315 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:4.127.20180510 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:4.127.20180815 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:4.127.20180912 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:4.127.20181010 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:4.127.20181125 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:4.127.20190104 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:4.127.20190204 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:4.127.20190218 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:4.127.20190318 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:4.127.20190416 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:4.127.20190521 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:4.127.20190603 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:9600.19377.20190604 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:4.127.20180412 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:4.127.20180510 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:4.127.20180815 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:4.127.20180912 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:4.127.20181010 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:4.127.20181125 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:4.127.20190104 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:4.127.20190204 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:4.127.20190218 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:4.127.20190318 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:4.127.20190416 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:4.127.20190521 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:4.127.20190603 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-smalldisk:9600.19377.20190604 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-zhcn:4.127.20181010 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-zhcn:4.127.20181125 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-zhcn:4.127.20190107 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-zhcn:4.127.20190204 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-zhcn:4.127.20190218 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-zhcn:4.127.20190318 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-zhcn:4.127.20190416 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-zhcn:4.127.20190603 MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter-zhcn:9600.19377.20190604 MicrosoftWindowsServer:WindowsServer:2016-Datacenter:14393.3025.20190604 MicrosoftWindowsServer:WindowsServer:2016-Datacenter:2016.127.20180613 MicrosoftWindowsServer:WindowsServer:2016-Datacenter:2016.127.20180815 MicrosoftWindowsServer:WindowsServer:2016-Datacenter:2016.127.20180912 MicrosoftWindowsServer:WindowsServer:2016-Datacenter:2016.127.20181010 MicrosoftWindowsServer:WindowsServer:2016-Datacenter:2016.127.20181122 MicrosoftWindowsServer:WindowsServer:2016-Datacenter:2016.127.20181218 MicrosoftWindowsServer:WindowsServer:2016-Datacenter:2016.127.20190115 MicrosoftWindowsServer:WindowsServer:2016-Datacenter:2016.127.20190214 MicrosoftWindowsServer:WindowsServer:2016-Datacenter:2016.127.20190315 MicrosoftWindowsServer:WindowsServer:2016-Datacenter:2016.127.20190416 MicrosoftWindowsServer:WindowsServer:2016-Datacenter:2016.127.20190603 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core:14393.3025.20190604 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core:2016.127.20180717 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core:2016.127.20180815 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core:2016.127.20180912 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core:2016.127.20181010 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core:2016.127.20181122 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core:2016.127.20181218 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core:2016.127.20190115 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core:2016.127.20190214 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core:2016.127.20190315 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core:2016.127.20190416 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core:2016.127.20190603 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core-smalldisk:14393.3025.20190604 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core-smalldisk:2016.127.20180717 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core-smalldisk:2016.127.20180815 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core-smalldisk:2016.127.20180912 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core-smalldisk:2016.127.20181010 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core-smalldisk:2016.127.20181122 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core-smalldisk:2016.127.20181218 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core-smalldisk:2016.127.20190115 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core-smalldisk:2016.127.20190214 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core-smalldisk:2016.127.20190315 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core-smalldisk:2016.127.20190416 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-Server-Core-smalldisk:2016.127.20190603 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-smalldisk:14393.3025.20190604 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-smalldisk:2016.127.20180510 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-smalldisk:2016.127.20180815 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-smalldisk:2016.127.20180912 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-smalldisk:2016.127.20181010 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-smalldisk:2016.127.20181122 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-smalldisk:2016.127.20181218 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-smalldisk:2016.127.20190115 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-smalldisk:2016.127.20190214 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-smalldisk:2016.127.20190315 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-smalldisk:2016.127.20190416 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-smalldisk:2016.127.20190603 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-with-Containers:14393.3025.20190604 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-with-Containers:2016.127.20180510 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-with-Containers:2016.127.20180613 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-with-Containers:2016.127.20180820 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-with-Containers:2016.127.20180912 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-with-Containers:2016.127.20181010 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-with-Containers:2016.127.20181218 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-with-Containers:2016.127.20190115 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-with-Containers:2016.127.20190214 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-with-Containers:2016.127.20190315 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-with-Containers:2016.127.20190416 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-with-Containers:2016.127.20190603 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-with-RDSH:2016.127.20170629 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-zhcn:14393.3025.20190604 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-zhcn:2016.127.20181010 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-zhcn:2016.127.20181122 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-zhcn:2016.127.20181218 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-zhcn:2016.127.20190115 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-zhcn:2016.127.20190214 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-zhcn:2016.127.20190315 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-zhcn:2016.127.20190416 MicrosoftWindowsServer:WindowsServer:2016-Datacenter-zhcn:2016.127.20190603 MicrosoftWindowsServer:WindowsServer:2019-Datacenter:17763.557.20190604 MicrosoftWindowsServer:WindowsServer:2019-Datacenter:2019.0.20181107 MicrosoftWindowsServer:WindowsServer:2019-Datacenter:2019.0.20181122 MicrosoftWindowsServer:WindowsServer:2019-Datacenter:2019.0.20181218 MicrosoftWindowsServer:WindowsServer:2019-Datacenter:2019.0.20190115 MicrosoftWindowsServer:WindowsServer:2019-Datacenter:2019.0.20190214 MicrosoftWindowsServer:WindowsServer:2019-Datacenter:2019.0.20190314 MicrosoftWindowsServer:WindowsServer:2019-Datacenter:2019.0.20190410 MicrosoftWindowsServer:WindowsServer:2019-Datacenter:2019.0.20190603 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core:17763.557.20190604 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core:2019.0.20181107 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core:2019.0.20181122 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core:2019.0.20181218 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core:2019.0.20190115 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core:2019.0.20190214 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core:2019.0.20190314 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core:2019.0.20190410 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core:2019.0.20190603 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-smalldisk:17763.557.20190604 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-smalldisk:2019.0.20181107 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-smalldisk:2019.0.20181122 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-smalldisk:2019.0.20181218 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-smalldisk:2019.0.20190115 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-smalldisk:2019.0.20190214 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-smalldisk:2019.0.20190314 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-smalldisk:2019.0.20190410 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-smalldisk:2019.0.20190603 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers:17763.557.20190604 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers:2019.0.20181107 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers:2019.0.20181122 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers:2019.0.20181218 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers:2019.0.20190115 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers:2019.0.20190214 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers:2019.0.20190314 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers:2019.0.20190410 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers:2019.0.20190603 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers-smalldisk:17763.557.20190604 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers-smalldisk:2019.0.20181107 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers-smalldisk:2019.0.20181122 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers-smalldisk:2019.0.20181218 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers-smalldisk:2019.0.20190115 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers-smalldisk:2019.0.20190214 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers-smalldisk:2019.0.20190314 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers-smalldisk:2019.0.20190410 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-with-Containers-smalldisk:2019.0.20190603 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-smalldisk:17763.557.20190604 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-smalldisk:2019.0.20181107 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-smalldisk:2019.0.20181122 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-smalldisk:2019.0.20181218 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-smalldisk:2019.0.20190115 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-smalldisk:2019.0.20190214 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-smalldisk:2019.0.20190314 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-smalldisk:2019.0.20190410 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-smalldisk:2019.0.20190603 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers:17763.557.20190604 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers:2019.0.20181107 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers:2019.0.20181122 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers:2019.0.20181218 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers:2019.0.20190115 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers:2019.0.20190214 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers:2019.0.20190314 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers:2019.0.20190410 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers:2019.0.20190603 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers-smalldisk:17763.557.20190604 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers-smalldisk:2019.0.20181107 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers-smalldisk:2019.0.20181122 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers-smalldisk:2019.0.20181218 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers-smalldisk:2019.0.20190115 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers-smalldisk:2019.0.20190214 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers-smalldisk:2019.0.20190314 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers-smalldisk:2019.0.20190410 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-with-Containers-smalldisk:2019.0.20190603 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-zhcn:17763.557.20190604 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-zhcn:2019.0.20181107 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-zhcn:2019.0.20181122 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-zhcn:2019.0.20181218 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-zhcn:2019.0.20190115 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-zhcn:2019.0.20190214 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-zhcn:2019.0.20190314 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-zhcn:2019.0.20190410 MicrosoftWindowsServer:WindowsServer:2019-Datacenter-zhcn:2019.0.20190603 MicrosoftWindowsServer:WindowsServer:Datacenter-Core-1803-with-Containers-smalldisk:17134.829.20190604 MicrosoftWindowsServer:WindowsServer:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20190603 MicrosoftWindowsServer:WindowsServer:Datacenter-Core-1809-with-Containers-smalldisk:17763.557.20190604 MicrosoftWindowsServer:WindowsServer:Datacenter-Core-1809-with-Containers-smalldisk:1809.0.20190603 MicrosoftWindowsServer:WindowsServer:Datacenter-Core-1903-with-Containers-smalldisk:18362.175.20190604 MicrosoftWindowsServer:WindowsServer:Datacenter-Core-1903-with-Containers-smalldisk:1903.0.20190603 MicrosoftWindowsServerHPCPack:WindowsServerHPCPack:2012R2:4.5.5159 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20171116 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20180216 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20180315 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20180412 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20180524 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20180613 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20180717 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20180815 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20180912 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20181010 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20181122 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20181218 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20190115 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20190214 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20190314 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-smalldisk:1709.0.20190410 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20171012 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20171115 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20180220 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20180315 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20180412 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20180524 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20180613 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20180717 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20180815 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20180912 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20181017 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20181218 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20190115 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20190214 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20190314 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1709-with-Containers-smalldisk:1709.0.20190410 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20180504 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20180510 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20180613 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20180815 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20180912 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20181017 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20181123 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20181218 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20190115 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20190214 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20190314 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20190410 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1803-with-Containers-smalldisk:1803.0.20190522 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1809-with-Containers-smalldisk:1809.0.20181107 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1809-with-Containers-smalldisk:1809.0.20181122 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1809-with-Containers-smalldisk:1809.0.20181218 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1809-with-Containers-smalldisk:1809.0.20190115 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1809-with-Containers-smalldisk:1809.0.20190214 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1809-with-Containers-smalldisk:1809.0.20190314 MicrosoftWindowsServer:WindowsServerSemiAnnual:Datacenter-Core-1809-with-Containers-smalldisk:1809.0.20190410
VMの拡張機能 の一覧を調べる
コマンド
region="japaneast" az vm extension image list -l $region
項目
name, publisher, version
実行結果
region="japaneast" time az vm extension image list -l region| jq -r '.[] | [.name, .publisher, .version] | @tsv' | sort | column -t -s $'t' ユニークなものだけ抽出 AADLoginForLinux Microsoft.Azure.ActiveDirectory.LinuxSSH 1.0.8370001 AADLoginForWindows Microsoft.Azure.ActiveDirectory 0.3.1.0 ADETest Microsoft.Azure.Security.Edp 2.2.0.4 AcronisBackup Acronis.Backup 1.0.51 AcronisBackupLinux Acronis.Backup 1.0.33 AgentWinExt bmc.ctm 9.0.0.1 AlertLogicLM AlertLogic.Extension 1.9.1.0 AntimalwareConfiguration Microsoft.Azure.Security.AntimalwareSignature 1.0.0.33 ApplicationHealthLinux Microsoft.ManagedServices 1.0.0 ApplicationHealthWindows Microsoft.ManagedServices 1.0.5 Aquarius Microsoft.Azure.Networking.SDN 5.0.0.0 AquariusLinux Microsoft.Azure.Networking.SDN 1.6.0.0 AzureBackupLinuxWorkload Microsoft.Azure.RecoveryServices.WorkloadBackup 1.0.0.9 AzureBackupLinuxWorkload Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp 1.0.0.62 AzureBackupWindowsWorkload Microsoft.Azure.RecoveryServices.WorkloadBackup 1.1.0.8 AzureBackupWindowsWorkload Microsoft.Azure.RecoveryServices.WorkloadBackup.Edp 1.3.0.13 AzureCATExtensionHandler Microsoft.AzureCAT.AzureEnhancedMonitoring 2.2.0.68 AzureDiagnosticsLinuxExtIaaS7.Test Microsoft.OSTCExtensions.Test 1.0.0.0 AzureDiskEncryption Microsoft.Azure.Security 2.2.0.11 AzureDiskEncryption Microsoft.Azure.Security.Edp 2.2.0.11 AzureDiskEncryptionForLinux Microsoft.Azure.Security 1.1.0.38 AzureDiskEncryptionForLinux Microsoft.Azure.Security.Edp 0.1.0.999339 AzureDiskEncryptionForLinux Microsoft.Azure.Security.Edp 1.1.0.39 AzureDiskEncryptionForLinux Microsoft.OSTCExtensions 0.1.0.999105 AzureEnhancedMonitorForLinux Microsoft.OSTCExtensions 3.0.1.0 AzureLogCollector Microsoft.WindowsAzure.Compute 1.0.0.9 AzurePerformanceDiagnostics Microsoft.Azure.Performance.Diagnostics 1.0.13 AzurePerformanceDiagnosticsLinux Microsoft.Azure.Performance.Diagnostics 1.1.3 AzureRemoteAppTestAgentV2 Microsoft.Windows.AzureRemoteApp.Test 1.0 BGInfo Microsoft.Compute 2.1 BmcCtmAgentLinux ctm.bmc.com 9.0.0.1 ChefClient Chef.Bootstrap.WindowsAzure 1210.13.1.1 CloudLinkSecureVMWindowsAgent CloudLinkEMC.SecureVM 6.8.93.0 Compute.AKS-Engine.Linux.Billing Microsoft.AKS 1.0.0 Compute.AKS-Engine.Windows.Billing Microsoft.AKS 1.0.0 Compute.AKS.Linux.Billing Microsoft.AKS 1.0.0 Compute.AKS.Windows.Billing Microsoft.AKS 1.0.0 ConferForAzure Confer 1.0.5.40 ConfigurationForLinux Microsoft.GuestConfiguration 1.11.0 ConfigurationforWindows Microsoft.GuestConfiguration 1.15.0.0 ConfigurationforWindows Microsoft.GuestConfiguration.Test 1.2.0.0 CustomScript Microsoft.Azure.Extensions 2.0.7 CustomScriptExtension Microsoft.Compute 1.9.3 CustomScriptForLinux Microsoft.OSTCExtensions 1.5.4 DSC Microsoft.GuestConfig.Test 2.2.0.0 DSC Microsoft.Powershell 2.77.0.0 DSC Microsoft.Powershell.Test 2.76.2.0 DSC Microsoft.Powershell.Test01 1.0.0.0 DSCForLinux Microsoft.OSTCExtensions 2.70.0.8 DSMSForWindows Microsoft.Azure.Security.Dsms 3.1.977.0 DatadogLinuxAgent Datadog.Agent 0.7.0 DatadogWindowsAgent Datadog.Agent 0.6.0 DependencyAgentLinux Microsoft.Azure.Monitoring.DependencyAgent 9.9.0.6300 DependencyAgentWindows Microsoft.Azure.Monitoring.DependencyAgent 9.9.0.6300 DockerExtension Microsoft.Azure.Extensions 1.2.2 DotnetAgent HPE.Security.ApplicationDefender 1.6.14.0 FileSecurity ESET 7.0.12018.1001 FileServerIaaS Microsoft.Azure.FileServer.Edp 1.0.0.1 FixEmulatedIO Microsoft.Azure.Extensions 1.0.0 FixLinuxDiagnostic Microsoft.Azure.Extensions 1.0.0 GenevaMonitoring Microsoft.Azure.Geneva 2.3.0.1 GuestActionForLinux Microsoft.Azure.Extensions 1.0.0 GuestActionForWindows Microsoft.Azure.Extensions 1.0.0 HPCAcmAgent Microsoft.HpcPack 1.0.47.0 HPCAcmAgentWin Microsoft.HpcPack 1.0.18.0 HPCComputeNode Microsoft.HpcPack 1.0.6416.0 HpcVmDrivers Microsoft.HpcCompute 1.1.3.0 IaaS47C6E03DTest Microsoft.Azure.Applications 1.0.0.3 IaaSAntimalware Microsoft.Azure.Security 1.5.5.9 IaaSAntimalware Microsoft.Azure.Security.Test 1.5.2.0 IaaSDiagnostics Microsoft.Azure.Diagnostics 1.16.0.0 IaaSDiagnostics StatusReport.Diagnostics.Test 0.27.0.0 IaaSDiagnostics WAD2AI.Diagnostics.Test 0.23.0.0 IaaSDiagnostics WAD2EventHub.Diagnostics.Test 0.1.0.0 InfiniBandDriverLinux Microsoft.HpcCompute 1.0.0.0 InfiniBandDriverWindows Microsoft.HpcCompute 1.1.0.0 InsightAgentLinux Rapid7.InsightPlatform 2.0.0.2 InsightAgentWindows Rapid7.InsightPlatform 2.0.0.2 JsonADDomainExtension Microsoft.Compute 1.3.2 KESL KasperskyLab.SecurityAgent 1.0.1.0 KSWS KasperskyLab.SecurityAgent 1.0.1.0 KeyVaultForLinux Microsoft.Azure.KeyVault 0.3.891.3 KeyVaultForLinux Microsoft.Azure.KeyVault.Edp 0.3.907.15 KeyVaultForWindows Microsoft.Azure.KeyVault 0.2.0.898 KeyVaultForWindows Microsoft.Azure.KeyVault.Edp 0.3.907.15 Linux Microsoft.Azure.RecoveryServices.SiteRecovery 1.0.0.9118 Linux Microsoft.Azure.SiteRecovery.Stage 1.0.0.101 Linux Microsoft.Azure.SiteRecovery.Test 1.2.0.330 LinuxAsm Microsoft.Azure.Extensions 2.2.5 LinuxChefClient Chef.Bootstrap.WindowsAzure 1210.13.1.1 LinuxDEBIAN7 Microsoft.Azure.RecoveryServices.SiteRecovery2 1.0.0.9118 LinuxDEBIAN7 Microsoft.Azure.SiteRecovery2.Test 1.0.0.327 LinuxDEBIAN8 Microsoft.Azure.RecoveryServices.SiteRecovery2 1.0.0.9118 LinuxDEBIAN8 Microsoft.Azure.SiteRecovery2.Test 1.0.0.327 LinuxDiagnostic Microsoft.Azure.Diagnostics 3.0.121 LinuxDiagnostic Microsoft.OSTCExtensions 2.3.9029 LinuxNodeAgent Microsoft.HpcPack 1.7.11.2 LinuxNodeAgent2016 Microsoft.HpcPack 2.1.6.0 LinuxNodeAgent2016U1 Microsoft.HpcPack 2.3.7.1 LinuxOL6 Microsoft.Azure.RecoveryServices.SiteRecovery 1.0.0.9118 LinuxOL6 Microsoft.Azure.SiteRecovery.Stage 1.0.0.101 LinuxOL6 Microsoft.Azure.SiteRecovery.Test 1.3.0.418 LinuxOL6 Microsoft.Azure.SiteRecovery.Test 1.3.0.419 LinuxOL7 Microsoft.Azure.RecoveryServices.SiteRecovery 1.0.0.9118 LinuxOL7 Microsoft.Azure.SiteRecovery.Stage 1.0.0.101 LinuxOL7 Microsoft.Azure.SiteRecovery.Test 1.0.0.143 LinuxRHEL6 Microsoft.Azure.RecoveryServices.SiteRecovery 1.0.0.9118 LinuxRHEL6 Microsoft.Azure.SiteRecovery.Stage 1.0.0.101 LinuxRHEL6 Microsoft.Azure.SiteRecovery.Test 1.5.0.422 LinuxRHEL7 Microsoft.Azure.RecoveryServices.SiteRecovery 1.0.0.9118 LinuxRHEL7 Microsoft.Azure.SiteRecovery.Stage 1.0.0.101 LinuxRHEL7 Microsoft.Azure.SiteRecovery.Test 1.3.0.419 LinuxSLES11SP3 Microsoft.Azure.RecoveryServices.SiteRecovery 1.0.0.9118 LinuxSLES11SP3 Microsoft.Azure.SiteRecovery.Stage 1.0.0.101 LinuxSLES11SP3 Microsoft.Azure.SiteRecovery.Test 1.3.0.415 LinuxSLES11SP4 Microsoft.Azure.RecoveryServices.SiteRecovery 1.0.0.9118 LinuxSLES11SP4 Microsoft.Azure.SiteRecovery.Stage 1.0.0.101 LinuxSLES11SP4 Microsoft.Azure.SiteRecovery.Test 1.3.0.415 LinuxSLES12 Microsoft.Azure.RecoveryServices.SiteRecovery2 1.0.0.9118 LinuxSLES12 Microsoft.Azure.SiteRecovery2.Test 1.0.0.233 LinuxUBUNTU1404 Microsoft.Azure.RecoveryServices.SiteRecovery 1.0.0.9118 LinuxUBUNTU1404 Microsoft.Azure.SiteRecovery.Stage 1.0.0.101 LinuxUBUNTU1404 Microsoft.Azure.SiteRecovery.Test 1.0.0.420 LinuxUBUNTU1604 Microsoft.Azure.RecoveryServices.SiteRecovery 1.0.0.9118 LinuxUBUNTU1604 Microsoft.Azure.SiteRecovery.Stage 1.0.0.101 LinuxUBUNTU1604 Microsoft.Azure.SiteRecovery.Test 1.0.0.333 MSEnterpriseApplication Microsoft.SystemCenter 1.0.5.0 ManagedIdentityExtensionForLinux Microsoft.ManagedIdentity 1.0.0.8 ManagedIdentityExtensionForWindows Microsoft.ManagedIdentity 1.0.0.14 McAfeeEndpointSecurity McAfee.EndpointSecurity 6.0 MicrosoftMonitoringAgent Microsoft.EnterpriseCloud.Monitoring 1.0.18001.0 MicrosoftMonitoringAgent Microsoft.EnterpriseCloud.Monitoring.Test 1.0.11049.1 MyBackupTest Microsoft.Azure.Backup.Test 1.0.127.0 MyBackupTestLinuxInt Microsoft.Azure.Backup.Test 1.0.9151.0 NetworkWatcherAgentLinux Microsoft.Azure.NetworkWatcher 1.4.905.3 NetworkWatcherAgentWindows Microsoft.Azure.NetworkWatcher 1.4.905.3 Null Microsoft.OSTCExtensions 2.1.0.0 NullLinux Microsoft.CPlat.Core 4.0.1 NullSeqA Microsoft.CPlat.Core 2.0.1 NullSeqB Microsoft.CPlat.Core 2.0.1 NullWindows Microsoft.CPlat.Core 4.0.0 NvidiaGpuDriverLinux Microsoft.HpcCompute 1.2.0.0 NvidiaGpuDriverWindows Microsoft.HpcCompute 1.2.0.0 OSPatchingForLinux Microsoft.OSTCExtensions 2.3.0.1 OctopusDeployWindowsTentacle OctopusDeploy.Tentacle 2.0.164 OmsAgentForLinux Microsoft.EnterpriseCloud.Monitoring 1.11.9 OtherNullLinux Microsoft.CPlat.Core 3.0.1 OtherNullWindows Microsoft.CPlat.Core 4.0.2 PortalProtectExtension TrendMicro.PortalProtect 2.1 ProtectVClientLinuxExtension Gemalto.SafeNet.ProtectV 3.0.0.205 ProtectVClientWindowsExtension Gemalto.SafeNet.ProtectV 3.0.0.318 PuppetAgent puppet 1.5.2 PuppetEnterpriseAgent PuppetLabs 3.8.4 PuppetEnterpriseAgent PuppetLabs.Test 3.8.4 QualysAgent Qualys 1.6.4.9 QualysAgentLinux Qualys 1.6.0.93 RDMAUpdateForLinux Microsoft.OSTCExtensions 0.1.0.9 ReleaseManagement1 Test.Microsoft.VisualStudio.Services 1.0.0.0 RemoteDebugVS14CTP Microsoft.VisualStudio.WindowsAzure.RemoteDebug 1.0.0.2 RemoteDebugVS2012 Microsoft.VisualStudio.WindowsAzure.RemoteDebug 1.0.0.2 RemoteDebugVS2013 Microsoft.VisualStudio.WindowsAzure.RemoteDebug 1.0.0.2 RunCommandLinux Microsoft.CPlat.Core 1.0.1 RunCommandWindows Microsoft.CPlat.Core 1.1.0 SCWPAgentForLinux Symantec.CloudWorkloadProtection 2.5.0.0 SCWPAgentForLinuxTest Symantec.CloudWorkloadProtection.Test 2.5.0.0 SCWPAgentForLinuxTestOnStage Symantec.CloudWorkloadProtection.TestOnStage 2.4.0.0 SCWPAgentForWindows Symantec.CloudWorkloadProtection 2.2.0.0 SCWPAgentForWindowsTest Symantec.CloudWorkloadProtection.Test 2.9.0.0 ServiceProfilerAgent Microsoft.VisualStudio.ServiceProfiler 0.1.0.25 Site24x7ApmInsightExtn Site24x7 1.9.0.0 Site24x7LinuxServerExtn Site24x7 1.6.0.0 Site24x7WindowsServerExtn Site24x7 1.8.0.0 SiteRecovery Microsoft.Azure.RecoveryServices.SiteRecovery 0.0.0.0 SiteRecoveryLinux Microsoft.Azure.RecoveryServices.SiteRecovery 0.0.0.1 qlIaaSAgent Microsoft.SqlServer.Management 2.0.19.0 SqlIaaSAgentLinux Microsoft.SqlServer.Management 1.0.0.0 StackifyLinuxAgentExtension Stackify.LinuxAgent.Extension 1.0.0.21 SymantecEndpointProtection Symantec 12.1.4100.2 SymantecEndpointProtection Symantec 12.1.7007.6505 TeamServicesAgent Microsoft.VisualStudio.Services 1.26.0.9 TeamServicesAgentLinux Microsoft.VisualStudio.Services 1.20.0.2 TestMSILinuxExtension Microsoft.Azure.Test.Identity 1.0.0.7 TestMSIWindowsExtension Microsoft.Azure.Test.Identity 1.0.0.11 TestSqlIaaSAgent Microsoft.TestSqlServer.Edp 1.4.0.0 TestSqlIaaSAgent Microsoft.TestSqlServer.Edp 2.0.0.17 TestSqlIaaSAgentLinux Microsoft.TestSqlServer.Edp 1.0.16 TrendMicroDSA Test.TrendMicro.DeepSecurity 10.0.0.10705 TrendMicroDSA TrendMicro.DeepSecurity 10.0.0.107 TrendMicroDSALinux Test.TrendMicro.DeepSecurity 10.0.0.10601 TrendMicroDSALinux TrendMicro.DeepSecurity 10.0.0.106 VMAccessAgent Microsoft.Compute 2.4.4 VMAccessForLinux Microsoft.OSTCExtensions 1.5.2 VMBackupForLinuxExtension Microsoft.Azure.Security 0.1.0.995 VMBackupForLinuxExtension Microsoft.OSTCExtensions 0.1.0.993 VMJITAccessExtension Microsoft.AzureSecurity.JITAccess 1.0.1.0 VMSnapshot Microsoft.Azure.RecoveryServices 1.0.57.0 VMSnapshot Microsoft.Azure.RecoveryServices.Edp 1.0.39.0 VMSnapshotLinux Microsoft.Azure.RecoveryServices 1.0.9150.0 VMSnapshotLinux Microsoft.Azure.RecoveryServices.Edp 1.0.9125.0 VS14CTPDebugger Microsoft.VisualStudio.Azure.RemoteDebug 1.0.0.6 VS2012Debugger Microsoft.VisualStudio.Azure.RemoteDebug 1.0.0.2 VS2013Debugger Microsoft.VisualStudio.Azure.RemoteDebug 1.0.0.2 VS2015Debugger Microsoft.VisualStudio.Azure.RemoteDebug 2.0.0.0 VSETWTraceListenerService Microsoft.VisualStudio.Azure.ETWTraceListenerService 1.0.0.0 VSRemoteDebugger Microsoft.VisualStudio.Azure.RemoteDebug 1.1.4.0 VormetricTransparentEncryptionAgent Vormetric 5.2.339.0 WebDeployForVSDevTest Microsoft.VisualStudio.WindowsAzure.DevTest 1.0.0.6 Windows Microsoft.Azure.RecoveryServices.SiteRecovery 1.0.0.9118 Windows Microsoft.Azure.SiteRecovery.Stage 1.0.0.101 WindowsTest Microsoft.Azure.SiteRecovery.Test 1.4.0.344 WorkloadBackup Microsoft.CloudBackup.Workload.Extension 1.1.0.9 WorkloadBackup Microsoft.CloudBackup.Workload.Extension.Edp 1.0.1338.67 WorkloadBackupLinux Microsoft.CloudBackup.Workload.Extension 1.0.0.9 WorkloadBackupLinux Microsoft.CloudBackup.Workload.Extension.Edp 1.0.0.17 dtmanaged dynatrace.ruxit 1.4.0.13 oneAgentLinux dynatrace.ruxit 2.3.0.2 oneAgentManagedWindows dynatrace.ruxit 1.0.0.4 oneAgentWindows dynatrace.ruxit 2.3.0.2 real 21m51.382s user 1m18.375s sys 0m13.250s