Working on a cloud integration project where the goal is to receive batch data through IoT device which is being done using Azure serverless function which consists of the received data. Now, this data had to be sent to AWS Kinesis firehose which is the AWS offering for receiving streamed data.
I did the following steps:
- I have the Azure Function up and running receiving the data from IoT device successfully.
- Trying to add the NuGet package reference of AWS Kinesis in Azure Function so that I will be able to use the package to call the necessary functions to make the streaming call to AWS.
Explanation with screenshots about my approach:
As seen above, receiving the batch data successfully. Next, need to refer to the NuGet package AWS kinesis to set up a reference.
Tried to refer to this thread before posting: How can I use NuGet packages in my Azure Functions? But in the above thread, the answers are not updated with the latest changes in the Azure portal where I cannot see an option to create a new file as suggested.
Tried like below to add a reference in the function.json file in the Azure function:
Need some input on a clear approach to adding NuGet reference through Azure portal in Azure function. Thanks and is greatly appreciated.