az cosmosdb postgres cluster
管理適用于 PostgreSQL 叢集的 Azure Cosmos DB。
命令
名稱 | Description | 類型 | 狀態 |
---|---|---|---|
az cosmosdb postgres cluster create |
使用節點建立新的叢集。 |
核心 | GA |
az cosmosdb postgres cluster delete |
將叢集與其中節點一起刪除。 |
核心 | GA |
az cosmosdb postgres cluster list |
列出訂用帳戶或資源群組中的所有叢集。 |
核心 | GA |
az cosmosdb postgres cluster promote |
將讀取複本叢集升階為獨立的讀寫叢集。 |
核心 | GA |
az cosmosdb postgres cluster restart |
重新開機叢集中的所有節點。 |
核心 | GA |
az cosmosdb postgres cluster server |
管理適用于 PostgreSQL 叢集伺服器的 Azure Cosmos DB。 |
核心 | GA |
az cosmosdb postgres cluster server list |
列出叢集的節點。 |
核心 | GA |
az cosmosdb postgres cluster server show |
取得叢集中節點的相關資訊。 |
核心 | GA |
az cosmosdb postgres cluster show |
取得叢集的相關資訊,例如計算和儲存體組態,以及叢集生命週期中繼資料,例如叢集建立日期和時間。 |
核心 | GA |
az cosmosdb postgres cluster start |
在所有叢集節點上啟動已停止的計算。 |
核心 | GA |
az cosmosdb postgres cluster stop |
停止所有叢集節點上的計算。 |
核心 | GA |
az cosmosdb postgres cluster update |
更新現有的叢集。 要求主體可以包含叢集定義的一或多個屬性。 |
核心 | GA |
az cosmosdb postgres cluster wait |
將 CLI 置於等候狀態,直到符合條件為止。 |
核心 | GA |
az cosmosdb postgres cluster create
使用節點建立新的叢集。
使用下列參考來判斷適用于 PostgreSQL 叢集和節點 CLI 命令之 Azure Cosmos DB 各種參數的支援值: https://learn.microsoft.com/rest/api/postgresqlhsc/#values 。
az cosmosdb postgres cluster create --cluster-name
--resource-group
[--administrator-login-password]
[--citus-version]
[--coord-public-ip-access {0, 1, f, false, n, no, t, true, y, yes}]
[--coord-server-edition]
[--coordinator-storage]
[--coordinator-v-cores]
[--enable-ha {0, 1, f, false, n, no, t, true, y, yes}]
[--enable-shards-on-coord {0, 1, f, false, n, no, t, true, y, yes}]
[--location]
[--maintenance-window]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--node-count]
[--node-enable-public-ip-access {0, 1, f, false, n, no, t, true, y, yes}]
[--node-server-edition]
[--node-storage]
[--node-v-cores]
[--point-in-time-utc]
[--postgresql-version]
[--preferred-primary-zone]
[--source-location]
[--source-resource-id]
[--tags]
範例
建立新的單一節點叢集
az cosmosdb postgres cluster create -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff" --enable-ha false --coordinator-v-cores 8 --coordinator-server-edition "GeneralPurpose" --coordinator-storage 131072 --enable-shards-on-coord true --node-count 0 --preferred-primary-zone "1" --administrator-login-password "password"
建立新的叢集作為時間點還原
az cosmosdb postgres cluster create -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff" --point-in-time-utc "2017-12-14T00:00:37.467Z" --source-location "eastus" --source-resource-id "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testGroup/providers/Microsoft.DBforPostgreSQL/serverGroupsv2/source-cluster"
建立新的叢集作為讀取複本
az cosmosdb postgres cluster create -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff" --source-location "eastus" --source-resource-id "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testGroup/providers/Microsoft.DBforPostgreSQL/serverGroupsv2/source-cluster"
建立新的多節點叢集
az cosmosdb postgres cluster create -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff" --enable-ha false --coordinator-v-cores 8 --coordinator-server-edition "GeneralPurpose" --coordinator-storage 131072 --enable-shards-on-coord false --node-count 3 --node-server-edition "MemoryOptimized" --node-v-cores 8 --node-storage 131072 --postgresql-version "15" --preferred-primary-zone "1" --administrator-login-password "password"
建立新的單一節點高載 1 個虛擬核心叢集
az cosmosdb postgres cluster create -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff" --enable-ha false --coordinator-v-cores 1 --coordinator-server-edition "BurstableMemoryOptimized" --coord-public-ip-access true --coordinator-storage 131072 --enable-shards-on-coord true --node-count 0 --preferred-primary-zone "1" --administrator-login-password "password"
建立新的單一節點高載 2 個虛擬核心叢集
az cosmosdb postgres cluster create -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff" --enable-ha false --coordinator-v-cores 2 --coordinator-server-edition "BurstableGeneralPurpose" --coord-public-ip-access true --coordinator-storage 131072 --enable-shards-on-coord true --node-count 0 --preferred-primary-zone "1" --administrator-login-password "password"
必要參數
叢集的名稱。
資源組名。 您可以使用 來設定預設群組 az configure --defaults group=<name>
。
選擇性參數
系統管理員登入的密碼。 建立的必要專案。 如果值為空白,則會從 tty 要求此值。
所有叢集伺服器上的 Citus 擴充功能版本。
如果在協調器上啟用公用存取。
協調器伺服器的版本(預設值:GeneralPurpose)。 建立的必要專案。
以 MB 為單位的伺服器儲存體。 建立的必要專案。 如需相關資訊,請參閱 https://learn.microsoft.com/rest/api/postgresqlhsc/#values 。
伺服器的虛擬核心計數(最大值:96)。 建立的必要專案。 如需相關資訊,請參閱 https://learn.microsoft.com/rest/api/postgresqlhsc/#values 。
如果已啟用或未啟用叢集的高可用性 (HA)。
如果協調器上的分區已啟用或未啟用叢集。
未指定資源所在的地理位置,將會使用資源群組的位置。
叢集的維護時間範圍。 支援速記語法、json-file 和 yaml-file。 請嘗試 「??」 以顯示更多。
請勿等候長時間執行的作業完成。
叢集的背景工作節點計數。 當節點計數為 0 時,它代表單一節點組態,能夠在該節點上建立分散式資料表。 2 個以上的背景工作節點代表多節點組態。 節點計數值不能是 1。 建立的必要專案。
如果在背景工作節點上啟用公用存取。
節點伺服器的版本(預設值:MemoryOptimized)。
每個背景工作節點上以 MB 為單位的儲存體。 如需相關資訊,請參閱 https://learn.microsoft.com/rest/api/postgresqlhsc/#values 。
每個背景工作節點上虛擬核心中的計算(最大值:104)。 如需相關資訊,請參閱 https://learn.microsoft.com/rest/api/postgresqlhsc/#values 。
叢集還原的 UTC 日期和時間(ISO8601格式)。
所有叢集伺服器上的主要 PostgreSQL 版本。
所有叢集伺服器的慣用主要可用性區域 (AZ)。
讀取複本叢集的來源叢集 Azure 區域。
讀取複本叢集的來源叢集資源識別碼。
資源標籤。 支援速記語法、json-file 和 yaml-file。 請嘗試 「??」 以顯示更多。
全域參數
增加記錄詳細資訊,以顯示所有偵錯記錄。
顯示此說明訊息並結束。
只顯示錯誤,隱藏警告。
輸出格式。
JMESPath 查詢字串。 如需詳細資訊和範例,請參閱 http://jmespath.org/。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
增加記錄詳細資訊。 使用 --debug 來取得完整偵錯記錄。
az cosmosdb postgres cluster delete
將叢集與其中節點一起刪除。
az cosmosdb postgres cluster delete [--cluster-name]
[--ids]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--resource-group]
[--subscription]
[--yes]
範例
刪除叢集
az cosmosdb postgres cluster delete -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff"
選擇性參數
叢集的名稱。
一或多個資源識別碼 (以空格分隔)。 它應該是包含 「資源識別碼」引數所有資訊的完整資源識別碼。 您應該提供 --ids 或其他「資源識別碼」引數。
請勿等候長時間執行的作業完成。
資源組名。 您可以使用 來設定預設群組 az configure --defaults group=<name>
。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
不提示確認。
全域參數
增加記錄詳細資訊,以顯示所有偵錯記錄。
顯示此說明訊息並結束。
只顯示錯誤,隱藏警告。
輸出格式。
JMESPath 查詢字串。 如需詳細資訊和範例,請參閱 http://jmespath.org/。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
增加記錄詳細資訊。 使用 --debug 來取得完整偵錯記錄。
az cosmosdb postgres cluster list
列出訂用帳戶或資源群組中的所有叢集。
az cosmosdb postgres cluster list [--resource-group]
範例
列出資源群組中的叢集
az cosmosdb postgres cluster list -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff"
列出訂用帳戶中的叢集
az cosmosdb postgres cluster list --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff"
選擇性參數
資源組名。 您可以使用 來設定預設群組 az configure --defaults group=<name>
。
全域參數
增加記錄詳細資訊,以顯示所有偵錯記錄。
顯示此說明訊息並結束。
只顯示錯誤,隱藏警告。
輸出格式。
JMESPath 查詢字串。 如需詳細資訊和範例,請參閱 http://jmespath.org/。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
增加記錄詳細資訊。 使用 --debug 來取得完整偵錯記錄。
az cosmosdb postgres cluster promote
將讀取複本叢集升階為獨立的讀寫叢集。
az cosmosdb postgres cluster promote [--cluster-name]
[--ids]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--resource-group]
[--subscription]
範例
將讀取複本叢集升階為獨立的讀寫叢集
az cosmosdb postgres cluster promote -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff"
選擇性參數
叢集的名稱。
一或多個資源識別碼 (以空格分隔)。 它應該是包含 「資源識別碼」引數所有資訊的完整資源識別碼。 您應該提供 --ids 或其他「資源識別碼」引數。
請勿等候長時間執行的作業完成。
資源組名。 您可以使用 來設定預設群組 az configure --defaults group=<name>
。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
全域參數
增加記錄詳細資訊,以顯示所有偵錯記錄。
顯示此說明訊息並結束。
只顯示錯誤,隱藏警告。
輸出格式。
JMESPath 查詢字串。 如需詳細資訊和範例,請參閱 http://jmespath.org/。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
增加記錄詳細資訊。 使用 --debug 來取得完整偵錯記錄。
az cosmosdb postgres cluster restart
重新開機叢集中的所有節點。
az cosmosdb postgres cluster restart [--cluster-name]
[--ids]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--resource-group]
[--subscription]
範例
重新開機叢集中的所有伺服器
az cosmosdb postgres cluster restart -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff"
選擇性參數
叢集的名稱。
一或多個資源識別碼 (以空格分隔)。 它應該是包含 「資源識別碼」引數所有資訊的完整資源識別碼。 您應該提供 --ids 或其他「資源識別碼」引數。
請勿等候長時間執行的作業完成。
資源組名。 您可以使用 來設定預設群組 az configure --defaults group=<name>
。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
全域參數
增加記錄詳細資訊,以顯示所有偵錯記錄。
顯示此說明訊息並結束。
只顯示錯誤,隱藏警告。
輸出格式。
JMESPath 查詢字串。 如需詳細資訊和範例,請參閱 http://jmespath.org/。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
增加記錄詳細資訊。 使用 --debug 來取得完整偵錯記錄。
az cosmosdb postgres cluster show
取得叢集的相關資訊,例如計算和儲存體組態,以及叢集生命週期中繼資料,例如叢集建立日期和時間。
az cosmosdb postgres cluster show [--cluster-name]
[--ids]
[--resource-group]
[--subscription]
範例
顯示叢集的詳細資料
az cosmosdb postgres cluster show -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff"
選擇性參數
叢集的名稱。
一或多個資源識別碼 (以空格分隔)。 它應該是包含 「資源識別碼」引數所有資訊的完整資源識別碼。 您應該提供 --ids 或其他「資源識別碼」引數。
資源組名。 您可以使用 來設定預設群組 az configure --defaults group=<name>
。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
全域參數
增加記錄詳細資訊,以顯示所有偵錯記錄。
顯示此說明訊息並結束。
只顯示錯誤,隱藏警告。
輸出格式。
JMESPath 查詢字串。 如需詳細資訊和範例,請參閱 http://jmespath.org/。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
增加記錄詳細資訊。 使用 --debug 來取得完整偵錯記錄。
az cosmosdb postgres cluster start
在所有叢集節點上啟動已停止的計算。
az cosmosdb postgres cluster start [--cluster-name]
[--ids]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--resource-group]
[--subscription]
範例
啟動叢集中的所有伺服器
az cosmosdb postgres cluster start -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff"
選擇性參數
叢集的名稱。
一或多個資源識別碼 (以空格分隔)。 它應該是包含 「資源識別碼」引數所有資訊的完整資源識別碼。 您應該提供 --ids 或其他「資源識別碼」引數。
請勿等候長時間執行的作業完成。
資源組名。 您可以使用 來設定預設群組 az configure --defaults group=<name>
。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
全域參數
增加記錄詳細資訊,以顯示所有偵錯記錄。
顯示此說明訊息並結束。
只顯示錯誤,隱藏警告。
輸出格式。
JMESPath 查詢字串。 如需詳細資訊和範例,請參閱 http://jmespath.org/。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
增加記錄詳細資訊。 使用 --debug 來取得完整偵錯記錄。
az cosmosdb postgres cluster stop
停止所有叢集節點上的計算。
az cosmosdb postgres cluster stop [--cluster-name]
[--ids]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--resource-group]
[--subscription]
範例
停止叢集中的所有伺服器
az cosmosdb postgres cluster stop -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff"
選擇性參數
叢集的名稱。
一或多個資源識別碼 (以空格分隔)。 它應該是包含 「資源識別碼」引數所有資訊的完整資源識別碼。 您應該提供 --ids 或其他「資源識別碼」引數。
請勿等候長時間執行的作業完成。
資源組名。 您可以使用 來設定預設群組 az configure --defaults group=<name>
。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
全域參數
增加記錄詳細資訊,以顯示所有偵錯記錄。
顯示此說明訊息並結束。
只顯示錯誤,隱藏警告。
輸出格式。
JMESPath 查詢字串。 如需詳細資訊和範例,請參閱 http://jmespath.org/。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
增加記錄詳細資訊。 使用 --debug 來取得完整偵錯記錄。
az cosmosdb postgres cluster update
更新現有的叢集。 要求主體可以包含叢集定義的一或多個屬性。
使用下列參考來判斷適用于 PostgreSQL 叢集和節點 CLI 命令之 Azure Cosmos DB 各種參數的支援值: https://learn.microsoft.com/rest/api/postgresqlhsc/#values 。
az cosmosdb postgres cluster update [--administrator-login-password]
[--citus-version]
[--cluster-name]
[--coord-public-ip-access {0, 1, f, false, n, no, t, true, y, yes}]
[--coord-server-edition]
[--coordinator-storage]
[--coordinator-v-cores]
[--enable-ha {0, 1, f, false, n, no, t, true, y, yes}]
[--enable-shards-on-coord {0, 1, f, false, n, no, t, true, y, yes}]
[--ids]
[--maintenance-window]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--node-count]
[--node-server-edition]
[--node-storage]
[--node-v-cores]
[--postgresql-version]
[--preferred-primary-zone]
[--resource-group]
[--subscription]
[--tags]
範例
相應增加或減少背景工作節點計算
az cosmosdb postgres cluster update -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff" --node-v-cores 16
向外延展:新增背景工作節點
az cosmosdb postgres cluster update -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff" --node-count 2
相應增加背景工作節點儲存體
az cosmosdb postgres cluster update -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff" --node-storage 2097152
更新叢集的多個組態設定
az cosmosdb postgres cluster update -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff" --node-v-cores 16 --node-count 4 coordinator-v-cores 16 --administrator-login-password "newPassword"
更新或定義維護期間
az cosmosdb postgres cluster update -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff" --maintenance-window day-of-week=1 start-hour=2 --start-minute=0 custom-window="Enabled"
升級 PostgreSQL 主要版本
az cosmosdb postgres cluster update -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff" --postgresql-version "15"
相應增加協調器儲存體
az cosmosdb postgres cluster update -n "test-cluster" -g "testGroup" --subscription "ffffffff-ffff-ffff-ffff-ffffffffffff" --coordinator-storage 2097152
選擇性參數
系統管理員登入的密碼。 建立的必要專案。 如果值為空白,則會從 tty 要求此值。
所有叢集伺服器上的 Citus 擴充功能版本。
叢集的名稱。
如果在協調器上啟用公用存取。
協調器伺服器的版本(預設值:GeneralPurpose)。 建立的必要專案。
以 MB 為單位的伺服器儲存體。 建立的必要專案。 如需相關資訊,請參閱 https://learn.microsoft.com/rest/api/postgresqlhsc/#values 。
伺服器的虛擬核心計數(最大值:96)。 建立的必要專案。 如需相關資訊,請參閱 https://learn.microsoft.com/rest/api/postgresqlhsc/#values 。
如果已啟用或未啟用叢集的高可用性 (HA)。
如果協調器上的分區已啟用或未啟用叢集。
一或多個資源識別碼 (以空格分隔)。 它應該是包含 「資源識別碼」引數所有資訊的完整資源識別碼。 您應該提供 --ids 或其他「資源識別碼」引數。
叢集的維護時間範圍。 支援速記語法、json-file 和 yaml-file。 請嘗試 「??」 以顯示更多。
請勿等候長時間執行的作業完成。
叢集的背景工作節點計數。 當節點計數為 0 時,它代表單一節點組態,能夠在該節點上建立分散式資料表。 2 個以上的背景工作節點代表多節點組態。 節點計數值不能是 1。
節點伺服器的版本(預設值:MemoryOptimized)。
每個背景工作節點上以 MB 為單位的儲存體。 如需相關資訊,請參閱 https://learn.microsoft.com/rest/api/postgresqlhsc/#values 。
每個背景工作節點上虛擬核心中的計算(最大值:104)。 如需相關資訊,請參閱 https://learn.microsoft.com/rest/api/postgresqlhsc/#values 。
所有叢集伺服器上的主要 PostgreSQL 版本。
所有叢集伺服器的慣用主要可用性區域 (AZ)。
資源組名。 您可以使用 來設定預設群組 az configure --defaults group=<name>
。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
以索引鍵/值組形式的應用程式特定中繼資料。 支援速記語法、json-file 和 yaml-file。 請嘗試 「??」 以顯示更多。
全域參數
增加記錄詳細資訊,以顯示所有偵錯記錄。
顯示此說明訊息並結束。
只顯示錯誤,隱藏警告。
輸出格式。
JMESPath 查詢字串。 如需詳細資訊和範例,請參閱 http://jmespath.org/。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
增加記錄詳細資訊。 使用 --debug 來取得完整偵錯記錄。
az cosmosdb postgres cluster wait
將 CLI 置於等候狀態,直到符合條件為止。
az cosmosdb postgres cluster wait [--cluster-name]
[--created]
[--custom]
[--deleted]
[--exists]
[--ids]
[--interval]
[--resource-group]
[--subscription]
[--timeout]
[--updated]
選擇性參數
叢集的名稱。
請等候在 'Succeeded' 使用 'provisioningState' 建立。
等到條件符合自訂 JMESPath 查詢為止。 例如 provisioningState!='InProgress', instanceView.statuses[?code=='PowerState/running']。
等到刪除為止。
等候資源存在。
一或多個資源識別碼 (以空格分隔)。 它應該是包含 「資源識別碼」引數所有資訊的完整資源識別碼。 您應該提供 --ids 或其他「資源識別碼」引數。
輪詢間隔以秒為單位。
資源組名。 您可以使用 來設定預設群組 az configure --defaults group=<name>
。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
以秒為單位的等候上限。
等到 provisioningState 更新為 'Succeeded'。
全域參數
增加記錄詳細資訊,以顯示所有偵錯記錄。
顯示此說明訊息並結束。
只顯示錯誤,隱藏警告。
輸出格式。
JMESPath 查詢字串。 如需詳細資訊和範例,請參閱 http://jmespath.org/。
訂用帳戶的名稱或識別碼。 您可以使用 來設定預設訂用 az account set -s NAME_OR_ID
帳戶。
增加記錄詳細資訊。 使用 --debug 來取得完整偵錯記錄。