Please enable JavaScript.
Coggle requires JavaScript to display documents.
2 Azure Functions - Coggle Diagram
2 Azure Functions
-
-
service plan
Consumption
- automatic scaling
- pay as running
- configurable timeout
Azure App service plan
- no timeout
- no real serverless
Authorization level
- Function uses a function key;
- Admin uses your master key
- anonymous
curl
- &code=key
- --header "x-functions-key: <your-function-key>"
-
trigger
- Blob storage Start a function when a new or updated blob is detected.
- Azure Cosmos DB Start a function when inserts and updates are detected.
- Event Grid Start a function when an event is received from Event Grid.
- HTTP Start a function with an HTTP request.
- Microsoft Graph Events Start a function in response to an incoming webhook from the Microsoft Graph. Each instance of this trigger can react to one Microsoft Graph resource type.
- Queue storage Start a function when a new item is received on a queue. The queue message is provided as input to the function.
- Service Bus Start a function in response to messages from a Service Bus queue.
- Timer Start a function on a schedule.
-