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
0
votes
1 answer

How to Install old Azure SDK via Microsft Web Platform installer?

Is it possible to use the web plataform installer to install older versions of azure SDK? Namely, I was trying to install azure sdk 2.8.2 but all my google-fu is giving me is links to this:…
AlfaTeK
  • 7,487
  • 14
  • 49
  • 90
0
votes
2 answers

Upload VHD to Azure using the Azure SDK

Is there a way to upload a VHD to Azure using the Azure SDK? I am aware of the same process for uploading it via Powershell (https://learn.microsoft.com/en-us/azure/virtual-machines/windows/classic/createupload-vhd) , but I would like to achieve…
George Tseres
  • 498
  • 6
  • 19
0
votes
0 answers

Can not fetch submodule using glide

https://github.com/Masterminds/glide I try to use glide with Azure go sdk. https://github.com/Azure/azure-sdk-for-go In this repository, it uses submodule. I create a simple glide.yaml like this. package: cf-engine import: - package:…
sandayuu
  • 47
  • 1
  • 1
  • 5
0
votes
0 answers

webview stays open after successful facebook log in with azure sdk

I'm utilizing the facebook log in from Azure SDK, I'm utilizing the following code in a button: -(void)fblogin { [_azureService.client loginWithProvider:@"facebook" urlScheme:@"dribel" controller:self animated:YES completion:^(MSUser *…
ycs.lrodz
  • 47
  • 6
0
votes
1 answer

What is the equivalent of BrokerProperty "setScheduledEnqueueTimeUtc" in AMQP/JMS world

I'm working on a java application that needs to send message to Azure service bus such that message is available to the next process after certain delay. Using Azure sdk, it can be achieved by setting setScheduledEnqueueTimeUtc BrokerProperty on the…
Ani
  • 1,655
  • 3
  • 23
  • 37
0
votes
1 answer

Java: azure or azure-svc-mgmt-*

So when I search maven I find what seems to be two different com.microsoft.azure SDKs. There is the com.microsoft.azure.azure and then there is the com.microsoft.azure.azure-svc-mgmt-* JARs. What is the relationship between them? Which set is…
0
votes
1 answer

azure API to restart VM

When I try to list azure VMs on my account from their python API, I get the following error: Message: The client 'xxxxxxxxxxxxxxxxxxx' with object id 'xxxxxxxxxxxxxxxxx' does not have authorization to perform action…
baigz
  • 1
0
votes
1 answer

Deploying java app using Azure SDK for Java/Net

Is it possible to create a tomcat and MySQL/SqlServer service using azure-sdk-for-java or azure-sdk-for-net, and deploy a war file programmatically? I went through the example codes about creating resource groups and virtual machines, but couldn't…
uylmz
  • 1,480
  • 2
  • 23
  • 44
0
votes
1 answer

How to detect memory leaks in Azure worker role on local machine

I have Azure SDK 2.5 .I need to detect memory leaks in worker role that runs tasks. What type of profiler could you advise to me ? Also, how can i download memory dumps to analyse from production environment ?
Vladyslav Furdak
  • 1,765
  • 2
  • 22
  • 46
0
votes
1 answer

Unable to create an Azure Cloud Service in C# with VS2013/2015

It all - probably - started because I installed Azure SDK .NET 2.9 to begin with, whereas my company's projects are still based on 2.7. When I installed 2.7, the project creation was failing because of an incompatibility between 2.7 and 2.9. I…
CanardMoussant
  • 913
  • 8
  • 22
0
votes
2 answers

How to get Azure Storage account key programmatically using Java?

How can we get Azure Storage account access key using Java? What all details are required to get that. Thanks, Prit
Prit
  • 73
  • 1
  • 10
-1
votes
1 answer

Testing Azure Blob Storage SDK

I found this great Getting Started Guide for the Azure Blob Storage SDK and how to connect to my storage account. A quick prototype showed that it already works, but I want to ensure this and the logic behind it via tests (either unit or integration…
gerstams
  • 415
  • 2
  • 12
-1
votes
2 answers

How to check if the batch pool nodes are idle in data factory

I am using a Python code that creates the batch pool using the Azure SDK for Python. I have deployed this code in function apps and I am using it in data factory to create the batch pool. I want to check if the nodes have started or if they are in…
Sindu_
  • 1,347
  • 8
  • 27
  • 67
-1
votes
1 answer

Why getting this "Authentication_MissingOrMalformed" error during Microsoft Graph API call?

const msRestAzure = require('ms-rest-azure'); const { GraphRbacManagementClient } = require('azure-graph'); module.exports = async function (context, req) { try{ const credentials = await…
-1
votes
1 answer

Add RoleAssignment to a Resource Group programmatically

I'm implementing an application in Java that has access to Azure via a secure principal and that creates some Resource Groups. I would like, given an AD Group Name specified via configuration, to add a specific Role Assignment for that AD Group to…
1 2 3
23
24