将Azure功能从“消费计划”切换到“高级计划”

时间:2020-06-08 16:43:14

标签: azure-functions

有人知道吗,如何将“消费计划”上的Azure功能更改为“高级计划”?我不能再次部署它们,我需要将它们切换为高级计划。我没有找到任何相关的手册。

enter image description here

1 个答案:

答案 0 :(得分:2)

您可以使用azure cli命令az resource update

注意:我在同一个资源组中具有天青功能和高级计划

1。通过azure门户或命令获取高级计划的资源ID。屏幕快照显示了如何通过azure门户获取资源ID(关于如何使用azure cli命令创建高级计划,您可以在步骤9之后参考this section。)

enter image description here

2。然后,您可以使用下面的azure cli命令将计划更新为高级版:

az resource update --resource-type "Microsoft.Web/sites" --name "your azure function name" --resource-group "xxx" --set properties.serverFarmId="the resource id from step 1"

如下所示的测试结果,并在执行命令后导航至您的功能应用程序->,您可以看到该计划已更改为高级计划(可能需要几分钟):

enter image description here

顺便说一句,如果您没有在本地安装azure cli,则可以按照this guide从azure门户网站运行这些命令。