You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-integrate-storage-queue-output-binding.md
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,11 +19,11 @@ In Azure Functions, input and output bindings provide a declarative way to make
19
19
20
20
- An Azure subscription. If you don't have one, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
21
21
22
-
- Follow the directions in [Create your first function from the Azure portal](./functions-get-started.md), omitting the **Clean up resources** step, to create the function app and function to use in this article.
22
+
- Follow the directions in [Create your first function in the Azure portal](./functions-create-function-app-portal.md), omitting the **Clean up resources** step, to create the function app and function to use in this article.
23
23
24
24
## Add an output binding
25
25
26
-
In this section, you use the portal UI to add a queue storage output binding to the function you created in the prerequisites. This binding makes it possible to write minimal code to create a message in a queue. You don't need to write code for such tasks as opening a storage connection, creating a queue, or getting a reference to a queue. the Azure Functions runtime and queue output binding take care of those tasks for you.
26
+
In this section, you use the portal UI to add an Azure Queue Storage output binding to the function you created in the prerequisites. This binding makes it possible to write minimal code to create a message in a queue. You don't need to write code for such tasks as opening a storage connection, creating a queue, or getting a reference to a queue. The Azure Functions runtime and queue output binding take care of those tasks for you.
27
27
28
28
1. In the Azure portal, search for and select the function app that you created in [Create your first function from the Azure portal](./functions-get-started.md).
29
29
@@ -35,13 +35,13 @@ In this section, you use the portal UI to add a queue storage output binding to
35
35
36
36
1. Select the **Azure Queue Storage** binding type and add the settings as specified in the table that follows this screenshot:
37
37
38
-
:::image type="content" source="./media/functions-integrate-storage-queue-output-binding/function-create-output-binding-details.png" alt-text="Screenshot that shows how to add a queue storage output binding to a function in the Azure portal.":::
38
+
:::image type="content" source="./media/functions-integrate-storage-queue-output-binding/function-create-output-binding-details.png" alt-text="Screenshot that shows how to add a Queue Storage output binding to a function in the Azure portal.":::
|**Message parameter name**| outputQueueItem | The name of the output binding parameter. |
43
43
|**Queue name**| outqueue | The name of the queue to connect to in your storage account. |
44
-
|**Storage account connection**| AzureWebJobsStorage | You can use the existing storage account connection used by your function app, or create a new one. |
44
+
|**Storage account connection**| AzureWebJobsStorage | You can use the existing storage account connection used by your function app or create a new one. |
45
45
46
46
1. Select **OK** to add the binding.
47
47
@@ -92,7 +92,7 @@ In this section, you add code that writes a message to the output queue. The mes
:::imagetype="content"source="./media/functions-integrate-storage-queue-output-binding/functions-test-run-function.png"alt-text="Screenshot that shows how to test the queue storage binding in the Azure portal.":::
95
+
:::imagetype="content"source="./media/functions-integrate-storage-queue-output-binding/functions-test-run-function.png"alt-text="Screenshot that shows how to test the Queue Storage binding in the Azure portal.":::
Inthisquickstart, youaddedanoutputbindingtoanexistingfunction. FormoreinformationaboutbindingtoQueuestorage, see [AzureFunctionsStoragequeuebindings](functions-bindings-storage-queue.md).
133
+
Inthisarticle, youaddedanoutputbindingtoanexistingfunction. FormoreinformationaboutbindingtoQueueStorage, see [QueueStoragetriggerandbindings](functions-bindings-storage-queue.md).
0 commit comments