gpt4 book ai didi

azure - 用于为 P1mv3 创建应用程序服务计划的 powershell 脚本是什么

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

我们正在尝试使用定价层为 Premium p1mV3 的 Power shell 脚本创建 Azure 应用服务计划,但始终创建​​为 Premium P1,并且在创建 Premium P0V3 时会发生相同的问题

PS 脚本 -

New-AzAppServicePlan -Name "app-service-plan-name" -ResourceGroupName "rg-name" -Location "East US" -Tier P1mv3 -WorkerSize Small

注意=我们可以从新 RG 中的 Azure 门户手动创建具有 Premium v​​3 P1mv3 的应用服务计划。

请帮助创建一个精确的脚本,以使用 Powershell 创建 Premium P1mv3 和 Premium P0V3

实际结果:actual.img

预期结果:预期1.img,预期2.img[预期1][实际]expected2 ]( /image/i5hFi.png )]( /image/cxFDo.png )

尚未按照上面描述中提到的预期创建

最佳答案

这是使用 powershell 命令识别出的 p1mv3 定价计划的问题,如本 Microsoft Q&A 中所确认的那样。 。替代方法是使用 Az CLIRestAPI .

使用 az appservice plan create CLI 命令:-

az appservice plan create --resource-group <resourcegroupname> --name newcliplan --sku P1mV3

注意:您还可以使用不同的 sku 选项创建应用服务计划。对于 P0V3,它看起来像--sku P0V3

enter image description here

enter image description here

New-AzAppServicePlan PowerShell 命令:-

我能够使用 PowerShell 设置其他 sku 层选项(例如:P1V3)。>

New-AzAppServicePlan -ResourceGroupName <ResourceGroup> -Name <planname> -Location westus -Tier "PremiumV3"

enter image description here

enter image description here

关于azure - 用于为 P1mv3 创建应用程序服务计划的 powershell 脚本是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76652707/

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