Azure Management API encompasses all the REST APIs that are used to manage Azure services. It is not the same as Azure API Management which is a specific service on Azure.
Questions tagged [azure-management-api]
224 questions
0
votes
2 answers
Access WebJob Information via Microsoft.Azure.Management.Fluent in C#
Using Information via Microsoft.Azure.Management.Fluent I'm trying to get to information about Web Jobs. I'm able to use it to get information about Web Apps, Service Buses, Resource Groups, App Services, etc.
But I haven't been able to find a way…

mike w
- 101
- 1
- 10
0
votes
1 answer
How to set Secure Transfer Required for a Storage Account?
How to set Secure Transfer Required (https://azure.microsoft.com/en-us/blog/secure-transfer-required-is-available-in-azure-storage-account/) for Azure Storage Accounts on using Azure Management Libraries for .NET…

thomius
- 784
- 2
- 9
- 21
0
votes
2 answers
Retrieve list of all Azure locations and services?
Does anyone know if there are any generic Azure API's for retrieving a list of all their locations and services, independent of a specific subscription?

Feech
- 439
- 1
- 6
- 14
0
votes
1 answer
Microsoft Graph API with Azure User Provisioning
What I want to do is quite simple: provision Office 365 and Azure Account from my Web App. And I want it to be available not only for me but for all the IT Departments (from other organizations too) that logs in my App.
From my understanding the…

Ziba Leah
- 2,484
- 7
- 41
- 60
0
votes
2 answers
Azure Container Service using Rest API
I would like to create azure container with resource group and cluster of specific Orchestrator Kubernetes cluster.
I know by using CLI its possible but I want to do this using Azure Rest API's for Container service from link given…

Bhushan Gholave
- 157
- 2
- 9
0
votes
1 answer
Azure rest apis to ListKeys of classic storage account
I wanted to retrieve the access keys of classic storage account.
I found this online
POST…

Hari Priya Thangavel
- 487
- 7
- 16
0
votes
1 answer
AzureManagement Library create app service linking VsTs git
My code is hosted on Visual Studio Team Services repository however it is asking for public git repository. How can i achieve this?WithPublicGitRepository
try
{
var app = await azure.WebApps.Define(appName)
…

User1911
- 394
- 1
- 5
- 22
0
votes
1 answer
How to use self-signed certificate to authenticate using Azure Management Library?
Is there a way to use self-signed certificates with Azure Management Libraries to log in to Azure?
There doesn't seem to be anything in SdkContext.AzureCredentialsFactory nor does the documentation at Authenticate with the Azure Management Libraries…

Veksi
- 3,556
- 3
- 30
- 69
0
votes
1 answer
Unable to create web app in azure through Azure Management Library
I have trying to create a web app through fluent Azure Management Library.
I am currently on DreamSpark Subscription.
Here is my program.cs
static void Main(string[] args)
{
// Set some variables...
string rgName =…

User1911
- 394
- 1
- 5
- 22
0
votes
1 answer
How to take backup of package of Webrole in the new Azure Resource manager Fluent
I need to take backup of web role package and store it in a azure storage
In the older version of I had use Azure Management Library
https://www.nuget.org/packages/Microsoft.WindowsAzure.Management.Libraries/
string deploymentName =…

kumar
- 8,207
- 20
- 85
- 176
0
votes
2 answers
Error when using AD to work with Azure Management API
I'm using Microsoft.WindowsAzure.Management and Microsoft.IdentityModel.Clients.ActiveDirectory packages trying to work with Azure Management API from C# code, but when I try to retrieve some data from it, I'm always getting the…

Konstantin Vasilev
- 393
- 3
- 11
0
votes
1 answer
Azure Rest Api recommendedElasticPools always returns Internal Server Error 500, Is there anyone facing this issue?
When I tried other rest apis for Azure Mangement, it works without any issue. But when I try this recommendedElasticPools , I am getting internal server error all times.
{
"code": "InternalServerError",
"message": "There was an internal server…

Akshay Joy
- 1,765
- 1
- 14
- 23
0
votes
2 answers
Azure python SDK ComputerManagementClient error
I get an error when trying to deallocate a virtual machine with the Python SDK for Azure.
Basically I try something like:
credentials = ServicePrincipalCredentials(client_id, secret, tenant)
compute_client = ComputeManagementClient(credentials,…

Christoph
- 51
- 3
0
votes
1 answer
Is there anyway to get subscriptions by Azure API?
Here is my token Authentication
var context = new AuthenticationContext(string.Format(ConfigurationManager.AppSettings["login"], ConfigurationManager.AppSettings["tenantId"]));
var credential = new…

sercanD
- 187
- 1
- 13
0
votes
1 answer
Azure Management API with service principal: The subscription '[...]' could not be found
I have created a subscription with Azure Germany, and now I am attempting to deploy my application topology there using the Azure Management API and a service principal.
Deployment works fine towards the "regular" Azure cloud, however when I…

andrerav
- 404
- 5
- 14