Questions tagged [azure-management-api]

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.

188 questions
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
  • 645
  • 1
  • 8
  • 18
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,306
  • 2
  • 44
  • 88
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 + "-" +…
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
  • 489
  • 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
  • 3,358
  • 11
  • 62
  • 106
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
  • 8,728
  • 12
  • 56
  • 90
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
  • 191
  • 1
  • 2
  • 11
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…
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 .
  • 415
  • 1
  • 5
  • 13
1
vote
1 answer

How to programmatically scale Azure Cloud Service (classic) roles

Based on this how-to for scaling Azure app services programmatically: Is it possible to scale Azure app services programmatically, I am trying to recreate this for Azure Cloud Services (classic), using the…
Alex
  • 38
  • 4
1
vote
1 answer

ArgumentNullException when attempting to create KeyVault via Azure Management Fluent Api in Azure Function

I've added a service bus triggered function to create a key vault via the Microsoft.Azure.Management.Fluent library. The function runs fine locally and creates a new key vault within my MSDN subscription, however, when it's deployed into Azure and…
Rob Willis
  • 4,276
  • 2
  • 25
  • 19
1
vote
1 answer

Do we have any option similar to Azure CLI's --debug switch in Azure Powershell?

The --debug switch in Azure CLI is very useful for me. Do we have such feature (--debug) in Azure Poweshell? Please note that I am not asking how to debug PowerShell scripts. I am looking for a feature to trace the calls that Azure Poweshell cmdlets…
Allan Xu
  • 5,501
  • 4
  • 29
  • 66
1
vote
2 answers

How to get list of Endpoint Statistics and Dangerous Endpoints by using of Azure Mgmt SDK fluent

I am using https://www.nuget.org/packages/Microsoft.Azure.Management.Fluent for getting resources in Azure with programmatically(C#.NET-Core Web app) and tried to get resources information by providing service principals(CS) as below... string…
1
vote
1 answer

How to get list of Empty Resource Groups by using of Azure Mgmt SDK fluent

I am using https://www.nuget.org/packages/Microsoft.Azure.Management.Fluent for getting resources in Azure with programmatically(C# .NET-Core Web app) and tried to get resources information by providing service principals as below... string…
1
vote
2 answers

Unable to subscribe to Azure Device Twins using MQTT and ESP8266

I have been working on the Azure Device Twins for the past month. The main goal is to subscribe to three device twin paths so that any change of the desired property results in a notification shown on the serial monitor and the desired property is…
1 2
3
12 13