Skip to content

Commit 9ca7119

Browse files
committed
Refresh screenshots and remove PII info
1 parent e972847 commit 9ca7119

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

articles/azure-functions/functions-integrate-storage-queue-output-binding.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ In Azure Functions, input and output bindings provide a declarative way to make
1919

2020
- 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.
2121

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.
2323

2424
## Add an output binding
2525

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.
2727

2828
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).
2929

@@ -35,13 +35,13 @@ In this section, you use the portal UI to add a queue storage output binding to
3535

3636
1. Select the **Azure Queue Storage** binding type and add the settings as specified in the table that follows this screenshot:
3737

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.":::
3939

40-
| Setting | Suggested value | Description |
40+
| Setting | Suggested value | description |
4141
| ------------ | ------- | -------------------------------------------------- |
4242
| **Message parameter name** | outputQueueItem | The name of the output binding parameter. |
4343
| **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. |
4545

4646
1. Select **OK** to add the binding.
4747

@@ -92,7 +92,7 @@ In this section, you add code that writes a message to the output queue. The mes
9292

9393
1. Confirm that your test matches this screenshot, and then select **Run**.
9494

95-
:::image type="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+
:::image type="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.":::
9696

9797
Notice that the **Request body** contains the `name` value *Azure*. This value appears in the queue message created when the function is invoked.
9898

@@ -126,12 +126,10 @@ In this section, you add code that writes a message to the output queue. The mes
126126

127127
A new message appears in the queue.
128128

129-
## Clean up resources
129+
[!INCLUDE [clean-up-section-portal](../../includes/clean-up-section-portal.md)]
130130

131-
[!INCLUDE [Clean up resources](../../includes/functions-quickstart-cleanup.md)]
131+
## Related content
132132

133-
## Next steps
134-
135-
In this quickstart, you added an output binding to an existing function. For more information about binding to Queue storage, see [Azure Functions Storage queue bindings](functions-bindings-storage-queue.md).
133+
In this article, you added an output binding to an existing function. For more information about binding to Queue Storage, see [Queue Storage trigger and bindings](functions-bindings-storage-queue.md).
136134

137135
[!INCLUDE [Next steps note](../../includes/functions-quickstart-next-steps-2.md)]
55.8 KB
Loading
-1.34 KB
Loading

0 commit comments

Comments
 (0)