[Q]
Azure CLI (az コマンド) を実行した結果の表示内容が良く分かりません。
[A]
az コマンドの実行結果の多くは JSON 形式で表示されます。スクリプト等で処理するのではなく、読みやすい形式で表示させるには、--output table オプションも指定してみてください。表形式で表示されますので、コマンドプロンプトのウィンドウを大きくしておくことをお勧めいたします。
※ --output table オプションに対応していないサブコマンドもあります。ご注意ください。
[参考情報]
Output formats for Azure CLI commands
https://docs.microsoft.com/ja-jp/cli/azure/get-started-with-azure-cli#globally-available-arguments
The Azure CLI uses JSON as its default output format, but offers other formats. Use the --output (--out or -o) parameter to format CLI output. The argument values and types of output are:
--output | Description |
---|---|
json |
JSON string. This setting is the default |
jsonc |
Colorized JSON |
yaml |
YAML, a machine-readable alternative to JSON |
table |
ASCII table with keys as column headings |
tsv |
Tab-separated values, with no keys |
none |
No output other than errors and warnings |
機械翻訳:
Azure CLI では、既定の出力形式として JSON を使用しますが、他の形式を提供します。--output (--outまたは -o) パラメーターを使用して、CLI 出力の形式を設定します。出力の引数値と型は次のとおりです。
--出力 | 説明 |
---|---|
json |
JSON 文字列。この設定はデフォルトです |
jsonc |
色分けされた JSON |
yaml |
YAML、JSONに代わるマシン可読の代替手段 |
table |
列見出しとしてキーを持つ ASCII テーブル |
tsv |
キーなしのタブ区切り値 |
none |
エラーと警告以外の出力はありません |
[更新日]
Update:202001