我开始深入研究Azure Batch,试图从Powershell创建一个池,我注意到在命令New-AzureBatchPool https://docs.microsoft.com/en-us/powershell/module/azurerm.batch/new-azurebatchpool?view=azurermps-6.8.1的Microsoft Documentation页面中,他们告诉我们在参数“-VirtualMachineSize”中我们必须指定虚拟机的大小,好的,但如果我发送“Standard_A1”作为-VirtualMachineSize参数,请求失败,但如果我发送“小”(正如我在命令的示例中看到的那样)它可以工作!
任何人都知道是否有一个文档页面包含一个表格,该表格将此命令所需的值类型(“小”)与正常值(“Standard_A0”,“Standard_L16s_v2”等等)相关联?
提前致谢!
好像你正在与上一代合作。根据https://docs.microsoft.com/en-us/azure/virtual-machines/windows/sizes-previous-gen
使用CLI和PowerShell的标准A0 - A4在传统部署模型中,CLI和PowerShell中的某些VM大小名称略有不同:
Standard_A0 is ExtraSmall
Standard_A1 is Small
Standard_A2 is Medium
Standard_A3 is Large
Standard_A4 is ExtraLarge