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
1
vote
4 answers
Get list of actual Azure Function endpoints from Powershell
I'm trying to get a full list of function endpoints in my Azure function app from a Powershell script. I can get the list of functions from the management.azure.com API, but it just has the function name,…

TheDoc
- 688
- 2
- 14
- 33
1
vote
2 answers
How to log into Azure App with a user from a different tenant?
I have created an app on my Active Directory through 'App Registrations (Preview) and am using Microsoft Authentication Library (MSAL.js) to log into the app. The app will be making API calls with the 'user_impersonation' scope, so I have enabled…

Pottsiex5
- 487
- 2
- 6
- 19
1
vote
1 answer
Microsoft Azure : API Access error DisallowedOperation
While performing the Resource Manager API calls for a few subscriptions I am getting the below error
400 Bad Request
{"code":"DisallowedOperation","message":"The current subscription type is not permitted to perform operations on any provider…

Pharaoh
- 712
- 1
- 9
- 33
1
vote
1 answer
How cloud services are provisioned (and billed) once a new deployment is requested to Azure REST API?
I'm using Azure REST API to create, deploy and start a Cloud Service (classic) (cspkg hosted in Azure Storage) with hundreds of instances. I'm noticing that time Azure takes to provision and start the requested instances is really heterogeneous.…

RubenJMarrufo
- 179
- 8
1
vote
2 answers
How to find out the tenant name using REST API
Is there an API that can be used to get the tenant name where a resource is? I know the resource group and the subscription.
All that I found so far is a way to list all the tenants https://management.azure.com/tenants?api-version=2017-08-01 but i…

Nicolae Daian
- 1,065
- 3
- 18
- 39
1
vote
1 answer
Microsoft 365 management API, currentStatus returns yesterday "statusTime" field
We're working on migrating to Office365/M365 and when we make an API call to the Microsoft Management API for status, the statusTime field is yesterday. Any ideas why?
https://manage.office.com/api/v1.0/(tenant)/ServiceComms/CurrentStatus
Here's a…

BP9906
- 11
- 1
1
vote
1 answer
Programmatically retrieve all the owners from a Azure subscription
I want to retrieve the all the Owners of an azure subscription Programmatically.
I don't want do it using Powershell.
And i came to know that we can achieve this using Azure Management REST API but could not find the exact API reference to retrieve…

Avinash
- 2,053
- 2
- 14
- 32
1
vote
2 answers
How to give app permission to create Azure Logic App
I am trying to use Microsoft.Azure.Management.Logic.LogicManagementClient to programmatically create a Logic App workflow in Azure. Authentication has already worked, but when I call logicManagementClient.Workflows.CreateOrUpdateAsync(), I am…

Mo B.
- 5,307
- 3
- 25
- 42
1
vote
1 answer
Track asynchronous Azure operations using the fluent API
I know you can track normal operations using the standard API: https://learn.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-async-operations
However I was wondering if there was a known way to utilize the Fluent Azure Management…

Ofek
- 325
- 1
- 2
- 13
1
vote
1 answer
Azure Fluent API: how to login as myself
Is there a way to log in to Microsoft.Azure.Management.Fluent as myself instead of as a service principal?
I want to use .NET instead of Powershell or the Azure UI to automate management tasks (via F# scripting), but I don't want to have to create a…

Maximilian Wilson
- 461
- 2
- 9
1
vote
3 answers
How to get success Response from Microsoft.Azure.Management.Fluent api method
I have created Virtual machine on Azure portal via Fluent API class in c#.
my c# code is:
public JsonResult createVM()
{
try
{
IAzure azure = Authenticate(subscriptionId);
azure.VirtualMachines.Define(vmName)
…

Priti kumari
- 79
- 2
- 12
1
vote
0 answers
How to specify a timeout to Azure KeyVaultManagementClient async call?
I'm accessing Azure KeyVault from .NET. If my internet connectivity is blocked, Vaults.GetAsync will take about 2 minutes to time out. I'd rather set this to something like 10 seconds.
Here's the code I'm using:
AzureCredentials creds = new…

fafrd
- 1,017
- 13
- 17
1
vote
0 answers
Azure service bus message delivery count is not increasing or is reset when topic subscription disabling/enabling
I have the following workflow:
Service bus receives messages.
Azure function triggers and tries to deliver this messages via HTTP to some service.
If delivery failed - function throws exception (custom) and disables topic subscription via code…

BumbleBee
- 97
- 1
- 8
1
vote
1 answer
How to set a server level objective (pricing tier) for an existing db in Azure fluent API for SQL Server?
How to set a server level objective (pricing tier) for an existing Azure SQL database in Azure fluent API for SQL Server?
I am using Microsoft.Azure.Management.Sql.Fluent, version 1.10.0, which is latest as of today.
This sample code provided by…

MindModel
- 822
- 1
- 10
- 22
1
vote
1 answer
Start and stop azure analysis service in C#
I have MVC application I am able to connect Analysis Service.
I want to start Analysis Service programmatically.
Thanks in advance.

Supriya Charapalle
- 21
- 2