gpt4 book ai didi

azure - 无法使用变量中的 az network vnet 子网列表进行循环

转载 作者:行者123 更新时间:2023-12-03 06:10:07 25 4
gpt4 key购买 nike

我有下面的代码,但是我无法从 $subnets 循环来获取名称并在代码中使用它。我想要做的是删除虚拟网络中的所有子网。

$rg = "xxxx"
$vnet = "dddd"
$subnets = az network vnet subnet list --resource-group $rg --vnet-name $vnet
foreach ($subnet in $subnets.name)
{
write-host $subnet
az network vnet subnet delete --name $subnet --resource-group $rg --vnet-name $vnet

}

最佳答案

我已修改代码以从 $subnets 循环以获取名称并在代码中使用该名称

$rg = "<RGName>"
$vnet = "<vnetName>"
$subnets = az network vnet subnet list --resource-group $rg --vnet-name $vnet | ConvertFrom-Json
foreach ($subnet in $subnets)
{
write-host $subnet.name
az network vnet subnet delete --name $subnet.name --resource-group $rg --vnet-name $vnet
}

当我运行上面的代码时,子网成功列出:

enter image description here

为了确认这一点,我在门户中检查了相同的内容,子网已成功删除,如下所示:

enter image description here

关于azure - 无法使用变量中的 az network vnet 子网列表进行循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76899340/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com