能否仅在 1 个 az network application-gateway rule create 命令中指定 2 种路由类型?

问题描述 投票:0回答:0

情况如下,已知在azure portal内部在appgateway内创建规则时,橙色和绿色字段的具体命令如下 az network application-gateway rule create --gateway-name --name --resource-group [--rule-type {Basic, PathBasedRouting}],基于图像的basic类型,用于图像中的橙色字段,PathBasedRouting类型用于指定绿色字段中的字段。 Image demostrative taken from azure portal

对于基本型我用这个命令

az network application-gateway rule create -g NETWORK_RG_DES --gateway-name ades -n MyRule --http-listener listener-exampleprueb2 --rule-type Basic --address-pool backend-des --http-settings MyHttpSettings --priority 620

对于PathBasedRouting类型我使用这个命令

az network application-gateway rule create -g NETWORK_RG_DES --gateway-name ades -n MyRule --rule-type PathBasedRouting --address-pool backend-des --http-settings "/myapp1/*=MyTarget1,MyBackendSettings1,MyBackendPool1" --address-pool MyBackendPool1 --priority 630

我还没有找到方法,或者是否有可能至少在一个命令中指定两种类型的路由,以便在执行命令时创建它并且实际上看起来像图片中的那样。

我已经为每种情况形成了命令,但我不知道如何或者是否有可能将这两个命令合并为一个命令并允许我创建如下图所示的规则

azure command-line-interface
© www.soinside.com 2019 - 2024. All rights reserved.