你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Set-AzVMPlan
设置虚拟机上的市场计划信息。
语法
Set-AzVMPlan
[-VM] <PSVirtualMachine>
[-Name] <String>
[[-Product] <String>]
[[-PromotionCode] <String>]
[[-Publisher] <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Set-AzVMPlan cmdlet 设置虚拟机的Azure 市场计划信息。 在能够通过命令行部署市场映像之前,必须启用编程访问,或者必须使用Azure 门户部署虚拟机。
示例
示例 1
New-AzVMConfig -VMName "VirtualMachine07" -VMSize "Standard_B1s" |
Set-AzVMPlan -Publisher "Canonical" -Product "UbuntuServer" -Name "18.04-LTS"
Name : VirtualMachine07
HardwareProfile : {VmSize}
Plan : {Name, Publisher, Product}
参数
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
指定市场中映像的名称。 此值与 Get-AzVMImageSku cmdlet 返回的值相同。 有关如何查找映像信息的详细信息,请参阅 Microsoft Azure 文档中的“查找和使用Azure 市场 VM 映像”。
类型: | String |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Product
指定来自市场的映像的产品。 此信息与 imageReference 元素的 Offer 值相同。
类型: | String |
Position: | 2 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-PromotionCode
指定促销代码。
类型: | String |
Position: | 3 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Publisher
指定映像的发布者。 可以使用 Get-AzVMImagePublisher cmdlet 找到此信息。
类型: | String |
Position: | 4 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-VM
指定要为其设置市场计划的虚拟机对象。 可以使用 Get-AzVM cmdlet 获取虚拟机对象。 可以使用 New-AzVMConfig cmdlet 创建虚拟机对象。
类型: | PSVirtualMachine |
别名: | VMProfile |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |