2017-09-25 158 views

回答

0

类似的查询已经在这里讨论: How to change the NOTIFICATION HUBS billing tier using powershell?

您还可以通过门户网站做到这一点。

转到Azure门户>通知集线器名称空间或通知集线器。选择您要更新的资源,然后转到定价层。请注意以下要求:

  • 更新后的定价层适用于您在 处理的名称空间中的所有中心。
  • 如果您的设备数量超过了要降级 的层数限制,则需要在降级之前删除设备。
0

可以使用Set-AzureRmNotificationHubsNamespace PowerShell命令升级梯队,其中$skuTier可以freebasicstandard

Set-AzureRmNotificationHubsNamespace 
    -ResourceGroup $ResourceGroup 
    -Namespace $namespaceName 
    -Location $location 
    -Tags $tags 
    -skuTier $skuTier