-1

I am looking to upgrade the pricing tier of notification hub instance from free tier to basic tier.

Is it possible to upgrade it using powershell script so that I will not have any downtime for the deployment.

santosh kumar patro
  • 7,231
  • 22
  • 71
  • 143

1 Answers1

0

You can upgrade your tier using the Set-AzureRmNotificationHubsNamespace PowerShell command where $skuTier can free, basic or standard:

Set-AzureRmNotificationHubsNamespace 
     -ResourceGroup $ResourceGroup 
     -Namespace $namespaceName 
     -Location $location 
     -Tags $tags 
     -skuTier $skuTier
Nikita R.
  • 7,245
  • 3
  • 51
  • 62
Amol Ravande
  • 146
  • 2