I am trying to upgrade an app service plan(ASP) to the specific premium tier P2V3 from S1.
I am using the following piece of code:
Set-AzAppServicePlan -ResourceGroupName "<RG Group Name>" -Name "<App service Name>" -Tier "PremiumV3" -WorkerSize Medium | Out-null;
How to achieve this ?