Sample Azure Functions config file for a Python Function with an Input and Output Binding
{ | |
"scriptFile": "__init__.py", | |
"bindings": [ | |
{ | |
"name": "msg", | |
"type": "queueTrigger", | |
"direction": "in", | |
"queueName": "images", | |
"connection": "customserverless01_STORAGE" | |
}, | |
{ | |
"name": "inputblob", | |
"type": "blob", | |
"dataType": "binary", | |
"path": "sampleuploads/{queueTrigger}", | |
"connection": "customserverless01_STORAGE", | |
"direction": "in" | |
}, | |
{ | |
"name": "outputblob", | |
"type": "blob", | |
"path": "thumbnails/{queueTrigger}", | |
"connection": "customserverless01_STORAGE", | |
"direction": "out" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment