Reputation: 275
Looking for SDK (c#) or API for managing azure services -
Found API documentation for azure cloud service here but not for above 2 services.
Upvotes: 0
Views: 35
Reputation: 8035
You were in the right place.
API Management is here: https://msdn.microsoft.com/en-us/library/dn776326.aspx
Mobile Apps is just a Web App underneath - Web Apps / Mobile Apps / App Service uses Azure Resource Manager. A tutorial is here: https://azure.microsoft.com/en-us/documentation/articles/app-service-deploy-complex-application-predictably/ and you can find the .NET SDK information here: https://azure.microsoft.com/en-us/documentation/articles/resource-manager-net-sdk/ (review the templated deployment section - the first tutorial creates a template)
Upvotes: 2