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.
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.
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