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
2
votes
4 answers
Dynamic table storage name
is it possible to have a dynamic table storage table name in a data factory input?
Everything what I find is with a fix name
"properties": {
"type": "AzureTable",
"linkedServiceName": "StorageLinkedService",
"typeProperties": {
"tableName":…

user7539828
- 43
- 3
2
votes
3 answers
Azure ARM Templates and REST API
I'm trying to learn Azure Resource Templates and am trying to understand the workflow behind when to use them and when to use the REST API.
My sense is that creating a Virtual Network and Subnets in Azure is a fairly uncommon occurance, once you get…

Stuart Brown
- 977
- 2
- 22
- 47
2
votes
1 answer
Access U-SQL execution logs
Can we access U-SQL execution logs? Are these exposed to developers to gather important statistics? Is there any API that is exposed to us or any U-SQL library already present?
Thanks

Ajay
- 783
- 3
- 16
- 37
2
votes
1 answer
Azure API Authentication
I am using Azure API's in C# code and used below libraries:
using Microsoft.Rest; using Microsoft.Rest.Azure.Authentication;
using Microsoft.Azure.Management.DataLake.Store;
using Microsoft.Azure.Management.DataLake.StoreUploader;
using…

Ajay
- 783
- 3
- 16
- 37
2
votes
1 answer
Azure Lake Store : missing Access-Control-Allow-Origin from response header
When trying to call my azure data lake store space and list all directories , It fails to return any results during to missing CORS .The problem that I can't find any way to give the Azure DatalakeStore the CORS policy ( Not the same as Azure…

Kerdo
- 33
- 6
2
votes
4 answers
Dynamically retrieving azure storage account key in ARM template
I am trying to automate creating an API Connection for a storage account in Azure using Resource Manager templates.
I am using the listKeys method in ARM to retrieve the access key of the storage account. I went through this question and it is not…

Naren
- 735
- 1
- 9
- 19
2
votes
1 answer
How do add a custom http module to a running Azure Webapp programmatically?
I have a custom http module (.DLL developed in .NET) that I'd like to add /programmatically/ to a running Azure Web App. I have access to management certificate or ARM token that WebApp is running under. I'm using .NET code to talk to Azure…

Igorek
- 15,716
- 3
- 54
- 92
2
votes
1 answer
How to set SSL bindings on Azure Web Apps via Management Rest API?
We are building automated deployment on Azure using the WebSite Management SDK.
We currently managed to add hostnames to a Web App via code.
using (websiteClient)
{
var configuration = websiteClient.WebSites.Get(webspace, WebsiteName + "-" +…

Anthony Claeys
- 231
- 1
- 9
2
votes
1 answer
Using Azure Management API from AzureWebJob
I'm developing an application that needs to run an AzureWebJob to deploy new instances of a site when a message is placed on an AzureQueue. I'm using CertificateCloudeCredentials to authenticate the request. I'm creating the credentials with the…

andyroschy
- 499
- 3
- 11
2
votes
2 answers
Azure Java SDK - Where to get values for serviceName and deploymentName on new Portal
I am trying to use the Azure Java SDK to automate tasks for my azure virtual machines such as starting and stopping them at various stages of the day
I was looking at the azure documentation for start virtual machine
here
The method signature in…

Damien
- 4,081
- 12
- 75
- 126
2
votes
2 answers
How to progromatically get active instance names of a cloud service?
Hoping someone knows the specific .Net library (or if not, REST service) for getting the names of active (running instances) in a given Azure Cloud Service.

Paul Fryer
- 9,268
- 14
- 61
- 93
2
votes
1 answer
Create Azure VM with ssh key through API
So I spent the better part of a day trying to navigate through the Azure API docs and finally I'm at a stage where I've got my VM up.
For the last couple of hours I've been trying to create a VM with a public key so I can ssh into it. However, it…

RohanC
- 301
- 1
- 3
- 12
2
votes
1 answer
The latest schema for Azure Resource Manager Template Language?
Where can I find which schema is the latest one for the Azure Resource Manager Template Language?
Please note, that I am not asking for the latest schema, but where I can find which is the latest schema. This is so I can continue to use the latest…

NoOneSpecial
- 695
- 1
- 6
- 16
2
votes
2 answers
Using management certificate with azure REST API
I'm using azure service management REST API in my application. I uploaded the management certificate on azure and have a copy in local.
I keep the certification in a separate folder (AzureCertificate) in the application itself and referring to that…

Nagaraj .
- 425
- 1
- 5
- 13
1
vote
1 answer
Use Azure AD login to connect to another Azure endpoint (reuse token?)
I'm wondering whether it's possible to reuse an accesstoken or idtoken after logging in to Azure AD. My application asks for Azure AD credentials and I want to reuse those to push telemetry data to an Azure Monitor Data Collection Endpoint.
I can't…

Hofa
- 51
- 6