Questions tagged [azure-sdk]

Use this tag for questions that has to do with the several SDKs and command-line tools, provided by Microsoft Azure.

Azure SDK is an additional set of templates and tools that help you access even more cloud resources and services to improve your Azure development experience. Use these tools to deploy infinitely-scalable applications and APIs, configure diagnostics, create and manage app service resources, and more.


Source: Microsoft Azure

353 questions
1
vote
3 answers

.Netcore alternative for Microsoft.Azure.Management.HDInsight.Job?

I'm working on converting a library from full .NetFramework to .NetCore I'm looking for a replacement for Microsoft.Azure.Management.HDInsight.Job, which hasn't been updated in over a year and is not compatible with .NetCore. I was hoping that the…
R Wood
  • 167
  • 1
  • 7
1
vote
1 answer

Does Application Insights depend on the Azure SDK?

I've noticed since adding IntelliTrace many exceptions for application insights looking for Microsoft.WindowsAzure.ServiceRunTime.dll when running on a Azure IaaS VM. //side note Notably these exceptions didn't appear to be reported in application…
Alex KeySmith
  • 16,657
  • 11
  • 74
  • 152
1
vote
1 answer

Add Azure user to resource group with nodejs

Using the Node.js SDK, I've created a user and a resource group. How can I now assign the user to the resource group as an owner?
Ben Hall
  • 1,927
  • 5
  • 25
  • 39
1
vote
1 answer

Azure API Throttling

I am trying to get a list of all Storage Accounts present in my Azure subscription but I am getting a throttling error. com.microsoft.azure.CloudException: Status code 429, {"error":{"code":"ResourceCollectionRequestsThrottled","message":"Operation…
user1142317
  • 533
  • 1
  • 8
  • 20
1
vote
2 answers

ServiceFabric SDK installation failed

I am trying to install ServiceFabric SDK on Azure VM (Windows Datacenter 2016) for configuring our TFS build-agent. But when I lanuch an install I got an error. I tried to re-install VS (I am using Community 2017) but it didn't help me. Log which…
matterai
  • 3,246
  • 4
  • 17
  • 29
1
vote
2 answers

Java Azure SB Connection with SAS token

ServiceBusConfiguration.configureWithSASAuthentication(config.getSbNamespace(), "RootManageSharedAccessKey", SAS_KEY, ".servicebus.windows.net"); ServiceBusContract service = ServiceBusService.create(); service.getTopic(topicID); This code snippet…
DDovzhenko
  • 1,295
  • 1
  • 15
  • 34
1
vote
0 answers

Azure SDK is missing on VS 2017 RC

After installing the new Visual Studio 2017 RC, I gave a problem with the Azure SDK. The error is as follows: WAT080: Failed to locate the Microsoft Azure SDK. Please make sure the Microsoft Azure SDK v2.9 is installed When installing, I…
Richard
  • 568
  • 1
  • 6
  • 23
1
vote
0 answers

Visual Studio 2015 with Update 3 - Possibly Related to Azure SDK

Im having a heck of time with this. I was following along with this doc to connect a Raspberry Pi to an Azure SQL DB and it first instructed to download the azure-sdk. After doing so, visual-studio-2015 has been largely non functional. At first, no…
1
vote
0 answers

Deploy option missing from Project menu for Azure Resource Group

I have created an Azure Resource Group project in Visual Studio 2015 and I am unable to see a "Deploy" option. It was there last week, but now it is missing. It doesn't show up for neither new projects nor existing projects. I've tried to…
Brian Ball
  • 12,268
  • 3
  • 40
  • 51
1
vote
0 answers

Update Azure SDK without "helpful" page launch?

So, I've just updated the Azure SDK for the (who knows how many versions?) time and on my second machine. I really don't need to see guidance on what's new or "getting started". So does anyone know how to say "stop, I don't need you to do that" on…
Damien_The_Unbeliever
  • 234,701
  • 27
  • 340
  • 448
1
vote
1 answer

Having trouble installing Azure SDK 2.9.1 on VS 15 Preview 4

When I try installing Azure SDK 2.9.1 for VS 15 Prev 4, I get the following error message: You must enable Visual Studio Web Development Feature in Visual Studio VS "15" Preview before you can install this product. I do have all boxes checked…
ishara
  • 353
  • 1
  • 10
1
vote
1 answer

Error:InvalidAuthenticationTokenTenant' The access token is from the wrong issuer

I am using Node js to authenticate into Azure AD to create a Data lake storage account, it logs in but for the account creation it gives the error: code: 'InvalidAuthenticationTokenTenant', message: 'The access token is from the wrong issuer…
1
vote
1 answer

What is the minimal install footprint to be able to open a sln with a .CloudService

I'm opening a solution which has a dependency on an outdated version of the Azure SDK such that Web PI wont install it. This leaves me with the following error when I build the project: WAT080 : Failed to locate the Microsoft Azure SDK. Please…
0
votes
1 answer

Facing connection reset by peer, errorContext[NAMESPACE: ] while sending messages to Azure queue

I am trying to send a message to a queue on the Azure service bus with ClientSecretCredential.it is giving error while using AzureSDK code. The code and error trace are given below. The latest jars are used and no compilation errors in the…
user3725074
  • 103
  • 1
  • 3
0
votes
1 answer

How to convert pandas DataFrame back to Mltable (Azure SDK v2)

In my code I read data as mltable for the Azure SDK v2. Then I convert that into pandas DataFrame, do some work on the data and then I want to save it back as an mltable in order to use that as a part of my pipeline. Unfortunately I was unable to…