I found that the API call was hidden in the library, which is only in preview mode. It is found in the next NuGet package, enable pre-validation in Visual Studio to find it in the NuGet client.
https://www.nuget.org/packages/Microsoft.Azure.Management.Resources/
Then to create a resource group I can use
var credentials = new TokenCloudCredentials("", "");
var client = new Microsoft.Azure.Management.Resources.ResourceManagementClient(credentials);
var result = c.ResourceGroups.CreateOrUpdateAsync("MyResourceGroup", new Microsoft.Azure.Management.Resources.Models.ResourceGroup("West US"), new System.Threading.CancellationToken()).Result;
, , :
Azure ResourceManagementClient
, TokenCloudCredentials, , , :
http://www.bradygaster.com/post/using-windows-azure-active-directory-to-authenticate-the-management-libraries
- , :
http://www.dushyantgill.com/blog/2015/05/23/developers-guide-to-auth-with-azure-resource-manager-api/