Azure - 断开 Powershell 中的 VNet 集成

Azure - Disconnect VNet Integration in Powershell

通过 Azure 门户,我可以断开我的 VNet 集成,请参见下文。我需要使用 Az 模块在 Powershell 脚本中执行此操作。这可能吗?

只需使用下面的命令,它在我这边工作正常。

Remove-AzResource -ResourceGroupName "<resource-group-name>" -ResourceType "Microsoft.Web/sites/config" -ResourceName "<webapp-name>/virtualNetwork" -Force

或者

Remove-AzResource -ResourceId "/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>/providers/Microsoft.Web/sites/<webapp-name>/config/virtualNetwork" -Force