Tag: Azure managemnet API
-
Create Hosted Service using Windows Azure Management API
In this post I will discuss, how could we create Hosted Service in Windows Azure using Windows Azure Management API? To create Hosted Service you need to perform POST operation on the below URI. You need to change subscription id with your subscription Id. https://management.core.windows.net/<subscription-id>/services/hostedservices While making the request, Request Header must contain information as…
-
List valid Data Center Locations for a Subscription using Windows Azure Management API
Windows Azure Management API enables you to manage Azure subscription through codes. In this post, I will show, how could you list valid datacenter locations available for given subscription using Windows Azure Management API? Windows Azure Management API is REST based API and allows you to perform almost all management level tasks with Azure subscription.…
-
Fetching Web Roles details using Windows Azure Management API
If you are writing some tool to manage Windows Azure portal then fetching information about Roles may be frequent requirement for you. In this post, we will discuss the way to Fetch below information about a Web Role or Worker Role using Windows Azure Management API. RoleName InstanceName InstanceStatus Any client making call to Azure…