2

Just like we have SDK for the Azure Storage [Tables, Blobs, Queues] along with the REST API;

Do we have SDK or library for handling Service Management APIs in c#...?

Naveen Vijay
  • 15,928
  • 7
  • 71
  • 92

3 Answers3

2

Naveen,

Take a look at "Microsoft.WindowsAzure.ServiceManagementClient.dll". You can find this along with Azure SDK (C:\Program Files\Windows Azure SDK\v1.4\bin directory). I think this is what you're looking at.

Hope this helps.

Gaurav Mantri
  • 128,066
  • 12
  • 206
  • 241
  • I wasn't aware that this existed, mainly because I haven't found it mentioned anywhere else (including in MS documentation). Is there somewhere I should be looking? – knightpfhor May 18 '11 at 11:01
  • This library is currently only used by csupload.exe I believe. If you look at it carefully, it has a lot of spelling errors, etc. in the API, so I don't think you should consider this official in any way (yet). – dunnry May 18 '11 at 15:37
  • Now located here: C:\Program Files\Microsoft SDKs\Windows Azure\.NET SDK\2012-06\bin – Richard Astbury Oct 16 '12 at 12:43
  • Yeah if you have it installed. -- Where's the NuGet package? – BrainSlugs83 Sep 20 '17 at 21:06
2

There's not an SDK as such, but there is this sample from Microsoft which demonstrates how you can work with the REST API in .net. The other option is you could just use the sample code as it is.

UPDATE: MS now have a pre-release version of a management library available on NuGet. Brady Gaster has a blog to get you started.

knightpfhor
  • 9,299
  • 3
  • 29
  • 42
-1

knightpfhor's comment is correct, but since the comment we've released the MAML 1.0 libraries. I think the Storage Management Client package might be what you're after.

brady gaster
  • 1,506
  • 1
  • 10
  • 15