Skip to content

Commit da68c36

Browse files
Merge pull request #289518 from diberry/diberry/1030-uuf-245380
Functions - UUF - triggers and bindings - 245380
2 parents c384d95 + 04d9806 commit da68c36

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

articles/azure-functions/functions-triggers-bindings.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
title: Triggers and bindings in Azure Functions
33
description: Learn to use triggers and bindings to connect your Azure Function to online events and cloud-based services.
44
ms.topic: conceptual
5-
ms.date: 09/06/2024
5+
ms.date: 10/28/2024
66
ms.custom: devdivchpfy22, devx-track-extended-java, devx-track-js, devx-track-python, devx-track-ts
77
zone_pivot_groups: programming-languages-set-functions
8+
ai-usage: ai-assisted
89
---
910

1011
# Azure Functions triggers and bindings concepts
@@ -36,9 +37,9 @@ These examples aren't meant to be exhaustive, but are provided to illustrate how
3637
3738
## Trigger and binding definitions
3839

39-
Triggers and bindings are defined differently depending on the development language. Make sure to select your language at the [top](#top) of the article.
40+
A function has a single trigger and one or more bindings. The type of binding is either input or output. Not all services support both input and output bindings. See your specific binding extension for [specific bindings code examples](#bindings-code-examples).
4041

41-
Bindings can be either input or output bindings. Not all services support both input and output bindings. See your specific binding extension for [specific bindings code examples](#bindings-code-examples).
42+
Triggers and bindings are defined differently depending on the development language. Make sure to select your language at the [top](#top) of the article.
4243

4344
This example shows an HTTP triggered function with an output binding that writes a message to an Azure Storage queue.
4445

@@ -194,10 +195,13 @@ In Python for Functions version 1, this example `function.json` file defines an
194195
---
195196

196197
::: zone-end
198+
197199
## Add bindings to a function
198200

199201
You can connect your function to other services by using input or output bindings. Add a binding by adding its specific definitions to your function. To learn how, see [Add bindings to an existing function in Azure Functions](add-bindings-existing-function.md).
200202

203+
Azure Functions supports multiple bindings, which must be configured correctly. For example, a function can read data from a queue (input binding) and write data to a database (output binding) simultaneously.
204+
201205
## Supported bindings
202206

203207
[!INCLUDE [Full bindings table](../../includes/functions-bindings.md)]

0 commit comments

Comments
 (0)