-
Notifications
You must be signed in to change notification settings - Fork 442
function.json
In a script function directory, there should be a companion function.json file that contains the configuration metadata for the function. Below are examples for each of the trigger types.
QueueTrigger Example:
{
"trigger": {
"type": "queue",
"queueName": "testqueue"
}
BlobTrigger Example:
{
"trigger": {
"type": "blob",
"blobPath": "testcontainer"
}
}
TimerTrigger Example:
{
"trigger": {
"type": "timer",
"schedule": "*/10 * * * * *",
"runOnStartup": true
}
}
WebHookTrigger Example:
{
"trigger": {
"type": "webHook"
}
}
ServiceBusTrigger Example (Queue):
{
"trigger": {
"type": "serviceBus",
"queueName": "testqueue"
}
}
ServiceBusTrigger Example (Topic):
{
"trigger": {
"type": "serviceBus",
"topicName": "testtopic",
"subscriptionName": "testsubscription"
}
}
Functions can also declare output bindings. Here's an example function declaring a single blob output binding:
{
"trigger": {
"type": "queue",
"queueName": "testqueue"
},
"outputs": [{
"type": "blob",
"name": "output",
"path": "testcontainer/{id}"
}]
}
The type
value must be one of the supported output binding types (e.g. "queue", "blob", "table", etc.). The name
value defines the identifier that the script will use to write to the binding. The remaining properties are binding type specific. For a blob binding there is a path
property, for a queue binding a queueName property, etc.
- Configuration Settings
- function.json
- host.json
- host.json (v2)
- Http Functions
- Function Runtime Versioning
- Official Functions developers guide
- Host Health Monitor
- Managing Connections
- Renaming a Function
- Retrieving information about the currently running function
- Site Extension Resolution
- Linux Consumption Regions
- Using LinuxFxVersion for Linux Function apps
- Out-of-proc Cancellation Tokens
- Assembly Resolution in Azure Functions
- ILogger
- Precompiled functions
- Official Functions C# developer reference
- Contributor Onboarding
- Development Process
- Deploying the Functions runtime as a private site extension
- Authoring & Testing Language Extensions
- Bindings in out-of-proc
- Language Extensibility
- Worker Capabilities
- Investigating and reporting issues with timer triggered functions not firing
- Sharing Your Function App name privately
- Azure Functions CLI release notes [moved here]
- Function App Zipped Deployment [deprecated]