gpt4 book ai didi

azure - 如何将 Azure 混合权益应用于托管实例?

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

借助 Azure 混合权益 (AHB),现有的本地 SQL Server 许可证可以转换为“Azure SQL 托管实例价格的 40% 折扣”。如果已在没有 AHB 的情况下创建托管实例,如何在现有托管实例上应用 Azure 混合权益?

最佳答案

将托管实例转换为 AHB 的最简单方法是转到 Azure 门户,打开托管实例的详细信息,转到设置/定价层并确认您拥有要使用的有效 SA 许可证。

可以使用 AzureRm.Sql PowerShell 库和 Set-AzureRmSqlManagedInstance 将托管实例的定价转换为 AHB命令:

Set-AzureRmSqlManagedInstance `
-Name $instanceName `
-ResourceGroupName $resourceGroup `
-LicenseType BasePrice

您可以使用 AzureRm 库和 Set-AzureRmResource 代替 AzureRm.Sql命令:

$subId = "70b3d058-a51a-****-****-**********"
$resourceGroup = "my-resource-group"
$instanceName = "my-instance"

Select-AzureRmSubscription -SubscriptionId $subId

$properties = New-Object System.Object
$properties | Add-Member -type NoteProperty -name licenseType -Value BasePrice

Set-AzureRmResource -Properties $properties `
-ResourceName $instanceName `
-ResourceType "Microsoft.SQL/managedInstances" `
-ResourceGroupName $resourceGroup -Force `
-ApiVersion "2015-05-01-preview"

Azure CLI 可用于更新许可证类型 az sql mi update命令:

az sql mi update -g my_res_group -n my-managed-instance --license-type BasePrice

关于azure - 如何将 Azure 混合权益应用于托管实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54109283/

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