Azure Management APIs: How do I change bid levels for web apps?

I can automate the creation of Azure web applications using the management SDK (i.e. https://github.com/Azure/azure-sdk-for-net ), and it is not clear how to change using this SDK. In particular, I want to change the web applications you created from Free to General.

How can i do this?

+4
source share
2 answers

Take a look WebHostingPlanOperations.UpdateAsync()( WebHostingPlanOperations.cs ).

Please note that an object WebHostingPlanUpdateParameters(located in the models here ) is required as a parameter . In this case, you can install:

  • WorkerSize (0, 1 2 , )
  • SkuOptions ( SkuOptions, , ).

SkuOptions :

  • Free = 0
  • = 1
  • Basic = 2
  • = 3
  • Premium = 4
+3

WebApps → - → → .

enter image description here

-3

All Articles