title | description | services | author | manager | ms.assetid | ms.service | ms.devlang | ms.topic | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|
External File bindings for Azure Functions (experimental) |
Using External File bindings in Azure Functions |
functions |
craigshoemaker |
jeconnoc |
azure-functions |
multiple |
conceptual |
11/27/2017 |
cshoe |
This article shows how to manipulate files from different SaaS providers (such as Dropbox or Google Drive) in Azure Functions. Azure Functions supports trigger, input, and output bindings for external files. These bindings create API connections to SaaS providers, or use existing API connections from your Function App's resource group.
Important
The External File bindings are experimental and might never reach Generally Available (GA) status. They are included only in Azure Functions 1.x, and there are no plans to add them to Azure Functions 2.x. For scenarios that require access to data in SaaS providers, consider using logic apps that call into functions. See the Logic Apps File System connector.
[!INCLUDE intro]
Connector | Trigger | Input | Output |
---|---|---|---|
Box | x | x | x |
Dropbox | x | x | x |
FTP | x | x | x |
OneDrive | x | x | x |
OneDrive for Business | x | x | x |
SFTP | x | x | x |
Google Drive | x | x |
Note
External File connections can also be used in Azure Logic Apps.
The external file trigger lets you monitor a remote folder and run your function code when changes are detected.
See the language-specific example:
The following example shows an external file trigger binding in a function.json file and a C# script function that uses the binding. The function logs the contents of each file that is added to the monitored folder.
Here's the binding data in the function.json file:
{
"disabled": false,
"bindings": [
{
"name": "myFile",
"type": "apiHubFileTrigger",
"direction": "in",
"path": "samples-workitems",
"connection": "<name of external file connection>"
}
]
}
Here's the C# script code:
public static void Run(string myFile, TraceWriter log)
{
log.Info($"C# File trigger function processed: {myFile}");
}
The following example shows an external file trigger binding in a function.json file and a JavaScript function that uses the binding. The function logs the contents of each file that is added to the monitored folder.
Here's the binding data in the function.json file:
{
"disabled": false,
"bindings": [
{
"name": "myFile",
"type": "apiHubFileTrigger",
"direction": "in",
"path": "samples-workitems",
"connection": "<name of external file connection>"
}
]
}
Here's the JavaScript code:
module.exports = function(context) {
context.log('Node.js File trigger function processed', context.bindings.myFile);
context.done();
};
The following table explains the binding configuration properties that you set in the function.json file.
|function.json property | Description|
|---------|---------|----------------------|
|type | Must be set to apiHubFileTrigger
. This property is set automatically when you create the trigger in the Azure portal.|
|direction | Must be set to in
. This property is set automatically when you create the trigger in the Azure portal. |
|name | The name of the variable that represents the event item in function code. |
|connection| Identifies the app setting that stores the connection string. The app setting is created automatically when you add a connection in the integrate UI in the Azure portal.|
|path | The folder to monitor, and optionally a name pattern.|
You can specify a file name pattern in the path
property. The folder referenced must exist in the SaaS provider.
Examples:
"path": "input/original-{name}",
This path would find a file named original-File1.txt in the input folder, and the value of the name
variable in function code would be File1.txt
.
Another example:
"path": "input/{filename}.{fileextension}",
This path would also find a file named original-File1.txt, and the value of the filename
and fileextension
variables in function code
would be original-File1 and txt.
You can restrict the file type of files by using a fixed value for the file extension. For example:
"path": "samples/{name}.png",
In this case, only .png files in the samples folder trigger the function.
Curly braces are special characters in name patterns. To specify file names that have curly braces in the name, double the curly braces. For example:
"path": "images/{{20140101}}-{name}",
This path would find a file named {20140101}-soundfile.mp3 in the images folder, and the name
variable value in the function code
would be soundfile.mp3.
In C# functions, you bind to the input file data by using a named parameter in your function signature, like <T> <name>
.
Where T
is the data type that you want to deserialize the data into, and paramName
is the name you specified in the
trigger JSON. In Node.js functions, you access the input file data using context.bindings.<name>
.
The file can be deserialized into any of the following types:
- Any Object - useful for JSON-serialized file data.
If you declare a custom input type (e.g.
FooType
), Azure Functions attempts to deserialize the JSON data into your specified type. - String - useful for text file data.
In C# functions, you can also bind to any of the following types, and the Functions runtime attempts to deserialize the file data using that type:
string
byte[]
Stream
StreamReader
TextReader
When an external file trigger function fails, Azure Functions retries that function up to 5 times by default (including the first try) for a given file. If all 5 tries fail, Functions adds a message to a Storage queue named webjobs-apihubtrigger-poison. The queue message for poison files is a JSON object that contains the following properties:
- FunctionId (in the format <function app name>.Functions.<function name>)
- FileType
- FolderName
- FileName
- ETag (a file version identifier, for example: "0x8D1DC6E70A277EF")
The Azure external file input binding enables you to use a file from an external folder in your function.
See the language-specific example:
The following example shows external file input and output bindings in a function.json file and a C# script function that uses the binding. The function copies an input file to an output file.
Here's the binding data in the function.json file:
{
"bindings": [
{
"queueName": "myqueue-items",
"connection": "MyStorageConnection",
"name": "myQueueItem",
"type": "queueTrigger",
"direction": "in"
},
{
"name": "myInputFile",
"type": "apiHubFile",
"path": "samples-workitems/{queueTrigger}",
"connection": "<name of external file connection>",
"direction": "in"
},
{
"name": "myOutputFile",
"type": "apiHubFile",
"path": "samples-workitems/{queueTrigger}-Copy",
"connection": "<name of external file connection>",
"direction": "out"
}
],
"disabled": false
}
Here's the C# script code:
public static void Run(string myQueueItem, string myInputFile, out string myOutputFile, TraceWriter log)
{
log.Info($"C# Queue trigger function processed: {myQueueItem}");
myOutputFile = myInputFile;
}
The following example shows external file input and output bindings in a function.json file and a JavaScript function that uses the binding. The function copies an input file to an output file.
Here's the binding data in the function.json file:
{
"bindings": [
{
"queueName": "myqueue-items",
"connection": "MyStorageConnection",
"name": "myQueueItem",
"type": "queueTrigger",
"direction": "in"
},
{
"name": "myInputFile",
"type": "apiHubFile",
"path": "samples-workitems/{queueTrigger}",
"connection": "<name of external file connection>",
"direction": "in"
},
{
"name": "myOutputFile",
"type": "apiHubFile",
"path": "samples-workitems/{queueTrigger}-Copy",
"connection": "<name of external file connection>",
"direction": "out"
}
],
"disabled": false
}
Here's the JavaScript code:
module.exports = function(context) {
context.log('Node.js Queue trigger function processed', context.bindings.myQueueItem);
context.bindings.myOutputFile = context.bindings.myInputFile;
context.done();
};
The following table explains the binding configuration properties that you set in the function.json file.
|function.json property | Description|
|---------|---------|----------------------|
|type | Must be set to apiHubFile
. This property is set automatically when you create the trigger in the Azure portal.|
|direction | Must be set to in
. This property is set automatically when you create the trigger in the Azure portal. |
|name | The name of the variable that represents the event item in function code. |
|connection| Identifies the app setting that stores the connection string. The app setting is created automatically when you add a connection in the integrate UI in the Azure portal.|
|path | Must contain the folder name and the file name. For example, if you have a queue trigger in your function, you can use "path": "samples-workitems/{queueTrigger}"
to point to a file in the samples-workitems
folder with a name that matches the file name specified in the trigger message.
In C# functions, you bind to the input file data by using a named parameter in your function signature, like <T> <name>
. T
is the data type that you want to deserialize the data into, and name
is the name you specified in the input binding. In Node.js functions, you access the input file data using context.bindings.<name>
.
The file can be deserialized into any of the following types:
- Any Object - useful for JSON-serialized file data.
If you declare a custom input type (e.g.
InputType
), Azure Functions attempts to deserialize the JSON data into your specified type. - String - useful for text file data.
In C# functions, you can also bind to any of the following types, and the Functions runtime attempts to deserialize the file data using that type:
string
byte[]
Stream
StreamReader
TextReader
The Azure external file output binding enables you to write files to an external folder in your function.
See the input binding example.
The following table explains the binding configuration properties that you set in the function.json file.
|function.json property | Description|
|---------|---------|----------------------|
|type | Must be set to apiHubFile
. This property is set automatically when you create the trigger in the Azure portal.|
|direction | Must be set to out
. This property is set automatically when you create the trigger in the Azure portal. |
|name | The name of the variable that represents the event item in function code. |
|connection| Identifies the app setting that stores the connection string. The app setting is created automatically when you add a connection in the integrate UI in the Azure portal.|
|path | Must contain the folder name and the file name. For example, if you have a queue trigger in your function, you can use "path": "samples-workitems/{queueTrigger}"
to point to a file in the samples-workitems
folder with a name that matches the file name specified in the trigger message.
In C# functions, you bind to the output file by using the named out
parameter in your function signature, like out <T> <name>
, where T
is the data type that you want to serialize the data into, and name
is the name you specified in the
output binding. In Node.js functions, you access the output file using context.bindings.<name>
.
You can write to the output file using any of the following types:
- Any Object - useful for JSON-serialization.
If you declare a custom output type (e.g.
out OutputType paramName
), Azure Functions attempts to serialize object into JSON. If the output parameter is null when the function exits, the Functions runtime creates a file as a null object. - String - (
out string paramName
) useful for text file data. the Functions runtime creates a file only if the string parameter is non-null when the function exits.
In C# functions you can also output to any of the following types:
TextWriter
Stream
CloudFileStream
ICloudFile
CloudBlockFile
CloudPageFile
[!div class="nextstepaction"] Learn more about Azure functions triggers and bindings