18,062 questions
-1
votes
1
answer
451
views
Functions.js file "Not a WebHook" webhookType
I cannot see any samples or documentation for the WebHookType. In the UI I can set it to "Not a WebHook" and want to do this in the functions.js, all samples seem to be "genericJson".
"webHookType": "...
12
votes
1
answer
8k
views
How do you include references to external assemblies in Azure Functions
I tried the following:
using System;
using Newtonsoft.Json
using Newtonsoft.Linq
public static void Run(string myEventHubMessage, out string document, TraceWriter log)
{
log.Verbose($"C# Event ...
18
votes
1
answer
8k
views
Generating names for output blobs for an Azure Function
Using the binding options for an Azure Function one can specify the name of a Blob to be written based on parameters derived from the trigger (e.g. the queue message that triggered the function); the ...
48
votes
8
answers
36k
views
Azure Functions vs. Logic Apps
Functions & Logic Apps are two distinct offerings by Microsoft Azure. I wonder what are the use cases that one should favor the new Functions offering over Logic Apps.
35
votes
4
answers
47k
views
What is the Azure equivalent of AWS Lambda?
At the moment we are running our application on an AWS Beanstalk but are trying to determine the suitablilty of Azure.
Our biggest issue is the amount of wasted CPU time we are paying for but not ...
5
votes
1
answer
4k
views
Correct way to escape an Azure Storage Blob Name
I am uploading files from a windows systems to Azure storage blobs
The local file names may contain characters that are invalid in blob names
I need a way of encoding these names as to fulfill the ...