Created
          October 28, 2020 23:25 
        
      - 
      
 - 
        
Save sjwaight/3a2e35aad7f164b504f87bc33cfea3a1 to your computer and use it in GitHub Desktop.  
    Sample Azure Functions config file for a Python Function with an Input and Output Binding
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "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