Questions tagged [azure-management]

70 questions
2
votes
1 answer

What is the Preferred Practice to Create an Azure ALM-Friendly Development and Deployment Environment?

I am finally jumping into the Azure development party, and I have a question in regards to the preferred practice in creating my development and deployed environments. To start with, I am learning Azure Key Vault and it has presented the perfect…
Mike-E
  • 2,477
  • 3
  • 22
  • 34
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
1 answer

Purpose of Azure Management Certificates

I'm doing some testing with a new Cloud Service and for some reason in my certificates I'm getting a bunch of these entries DC=Windows Azure Service Management for Extensions All have different thumbprints. Doesn't seem to be affecting anything..…
weretaco
  • 135
  • 1
  • 7
2
votes
1 answer

Azure Alert Notifications not activated

I created alerts to notify us when our SQL Database DTU usage peaks, but the alerts are still in a "Not activated" status: The alert details are also showing a "Not activated" state: But the alerts are set to "Enabled": How do I go about…
Dave New
  • 38,496
  • 59
  • 215
  • 394
2
votes
2 answers

Azure Active Directory Authentication Error in Azure Management Library

I'm developing a windows phone app by using Azure Management Libraries in order to manage my Azure Websites. I used Azure Active Directory for authentication as mentioned here and everthing works great for me. But I'm getting "AuthenticationFailed:…
Abdurrahman Alp Köken
  • 1,236
  • 1
  • 13
  • 12
1
vote
1 answer

Azure account vs tenant (and maybe vs management group)

I'm having some difficulty seeing the differences between an Azure account, management group, and tenant. They seem to have in common that all can contain multiple subscriptions. I get the idea of the subscription-- a billing unit, all charged to…
Andrew
  • 475
  • 4
  • 15
1
vote
0 answers

Unable to Create Pool using Azure Batch Management Library with ServiceClientCrenetials generated via AzureCredentialsFactory

I am using this documentation to assign a managed identity to my Batch Pool. For simplicity I do not include that assignment in the examples below as the issue is not tied to that but rather to accessing the management library with my credentials…
1
vote
1 answer

How to get Azure Products by product programmatically?

I can get available regions for any Azure service using this page https://azure.microsoft.com/en-us/global-infrastructure/services/?products=storage Is any API (REST for example or c#) to get this information programmatically? Thanks.
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…
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…
1
vote
2 answers

How to register resource providers using Azure fluent resource management?

I'd like to fully automate my resource creation process. Unfortunately brand new subscriptions don't have a few resource providers registered by default. E.g. SQL. That's easily solved as described here:…
1
vote
1 answer

What is the role of provisioningstate property of a resource group

Using powershell I ran the following command Get-AzureRmResourceGroup and got some information on my resource group. One of the properties mentioned is Provisioningstate which in my case is Succeeded and I assume could be Failed as well. 1- When…
MHOOS
  • 5,146
  • 11
  • 39
  • 74
1
vote
2 answers

Get IP of Azure VM using SDK

I have a VM powered on and running in azure. I know its name but want to retrieve its IP address programmatically using the new C# SDK and avoiding the REST API. How can I do this?
sirdank
  • 3,351
  • 3
  • 25
  • 58
1
vote
1 answer

How to get around 400 Bad Request - value specified for parameter 'ContainerUriString' is invalid

I am trying to export an Azure package using the GetPackage method of Service Management API. I have tried both calling the REST API directly using a WebClient, and by using the Windows Azure Service Management Library package (I have posted the…
David Airapetyan
  • 5,301
  • 4
  • 40
  • 62
1
vote
2 answers

How programatically restart a Azure VM role (PaaS VM)

I have a PaaS VM role that need to be restart using Azure Management libraries. I tried following codes but failed with "BadRequest: The operation is not supported on a role of type MyPaaSVmName". But I successfully restarted IaaS VM using below…