我正在使用 Azure Powershell 创建一个新的 Azure 网站:
New-AzureWebsite -Name MyWebsiteName
Azure 在Default1
服务器场中创建它,而我需要在DefaultServerFarm
.
使用该-location
参数无法指定服务器场,因为Default1
和DefaultServerFarm
计划都在 中"West US"
,并且 location 参数不将服务器场名称作为其值。
使用-slot
也不起作用,以为我不确定该参数应该包含什么,EndpointNotFoundException
如果我尝试将其DefaultServerFarm
作为其值运行,它会抛出一个。
我们如何使用 Powershell 创建一个新的 azure 网站并设置其服务器场?