July 2018
Intermediate to advanced
350 pages
8h 47m
English
Azure Blob storage supports both input and output bindings for Azure Functions. Let's look at an example of a bindings file that defines both input and output bindings. The following example has data coming from Azure Queue and Output Bindings as Azure Blob storage:
{"bindings": [{"queueName": "cartItems","connection": "MyStorageSetting","name": "cartItem","type": "queueTrigger","direction": "in"},{"name": "kuldeepsInputBlob","type": "blob","path": "bookChapters/{queueTrigger}","connection": "MyStorageSetting","direction": "in"},{"name": "kuldeepsOutputBlob","type": "blob","path": "bookChapters/{queueTrigger}-Copy","connection": "MyStorageSetting","direction": "out"}],"disabled": false}This binding sample is also available at ...
Read now
Unlock full access