Questions tagged [azure-node-sdk]
89 questions
0
votes
0 answers
Bot is not showing in MS Teams when tried to search by Bot App ID
We created bot and connected to MS teams channel. its working fine. but now, when I'm tried to search bot in MS teams using MS App ID, it is not showing.
Please find below image for reference.
teams image
when we tried to search by MS APP ID, it…
0
votes
1 answer
Triggering a deployment using azure devops node api
How can I trigger a deployment using the azure devops node API? I do it manually as follows:
Go to the release page
Click on the latest release
Choose the env I want to deploy to (listed in the release stages)
Click deploy
I am able to get the…

Pradeep Vairamani
- 4,004
- 3
- 36
- 59
0
votes
1 answer
Authorization Error from beginCopyFromURL API from Javascript library (@azure/storage-blob) when executed from minikube
I have application registered in Azure and it has Storage Account Contributor role. I am trying to copy content from one account to another in same subscription by using SAS token. Below is code snippet for testing purpose. This code works perfectly…

sarang73
- 3
- 3
0
votes
1 answer
Azure Function Binding Types - The binding type(s) 'webPubSubTrigger' were not found in the configured extension bundle
I'm trying to trigger an Azure Function when a Web PubSub message is published.
According to the example in this article, I should be able to use the following to trigger a function when a new message is sent to a specific hub...
{
"disabled":…

an0nc0d3r
- 67
- 1
- 6
0
votes
1 answer
Facing install4j: compilation failed. Reason: error during counter signing
We are facing below error
[install4j] Creating media file 'Windows':
[install4j] enter code here`Created media file output directory
[install4j] Dec 18, 2021 2:53:08 PM java.util.prefs.FileSystemPreferences$1 run
[install4j] INFO: Created user…

user4569959
- 1
- 3
0
votes
1 answer
The client 'XXX' with object id 'XXX' does not have authorization to perform action 'Microsoft.Media/mediaServices/transforms/write'
I am trying to use the following git repo in order to connect to azure ams, upload a video and stream it:
https://github.com/Azure-Samples/media-services-v3-node-tutorials/blob/main/AMSv3Samples/StreamFilesSample/index.ts
For some reason I am keep…

Ozure
- 115
- 2
- 8
0
votes
0 answers
Getting wrong value from adaptive cards with input.date in MS Teams
We have created an adaptive card with Input.Date field for MS Teams using botframework(in node). I have a dialog where the user choose date from date picker. But when user select date from date picker it gives date from input.date filed as one day…

chandu
- 1
- 1
0
votes
1 answer
Copy file from Azure Storage blob (Containers) to Azure File shares using Nodejs
Is there a way to copy files from Azure Containers (blobs) to Azure File shares?
I was able to copy files from one container to another - see below.
But I wanted to copy files from Blob to File Shares
const {
BlobServiceClient,
…

Selyst
- 111
- 1
- 12
0
votes
1 answer
wait() function for azure nodejs sdk
Is there a wait() function available for azure nodejs SDK just like what python SDK has.
Below is my python code to start a VM in azure
async_vm_start = compute_client.virtual_machines.start(group_name, vm_name)
async_vm_start.wait()
So here my…

Aravind Reddy
- 353
- 4
- 18
0
votes
1 answer
Find Azure resource group by Vm name
I am trying to find the resource group allocated to a VM in azure using nodejs.
I am using the below link as my…

Aravind Reddy
- 353
- 4
- 18
0
votes
1 answer
EventHub with NodeJS SDK - All consumers in ConsumerGroup getting the message
I hope someone can clarify this for me:
I have 2 consumers in the same ConsumerGroup, it is my understanding that they should coordinate between them, but I am having the issue that both consumers are getting all the messages. My code is pretty…

covo
- 550
- 4
- 12
0
votes
1 answer
Azure Blob Storage / NodeJS - Read Avro File from Buffer
I've got Event hubs outputting to Blob Storage using the Capture functionality - this outputs whatever we throw into the queue as a .avro file.
If I download this file and try to parse it with a library like avro-js, I have no problems - I can read…

Sandeep
- 65
- 5
0
votes
1 answer
Is it possible to add filter to azure blobs
I am trying to retrieve blob on the basis of my filters for that I have created a device in iot-hub which is receiving telemetry data and routed it to the storage account as a blob.
Now I want to retrieve the blob using Nodejs.
Is there any…

Hareem rehan
- 25
- 7
0
votes
1 answer
NodeJS '@azure/storage-blob': How do set Blob Service Properties when uploading a file
From this document, there is no example to set Blob Service Properties.
Below is my Sample Code:
let containerClient = blobServiceClient.getContainerClient(CONTAINERNAME),
blockBlobClient = containerClient.getBlockBlobClient(BLOBNAME);
await…

DaiKeung
- 1,077
- 1
- 19
- 38
0
votes
1 answer
NSG rules attached to all VM under a subscription
I have a requirement where I need to get NSG rules attached to all VM/NIC under a subscription using azure node SDK. I went through Node doc but didn't find any suitable method to do so. Is there anything that I'm missing?
I have tried below snippet…

lambodar
- 3,495
- 5
- 34
- 58