Skip to content

Commit 8d420c9

Browse files
authored
Merge pull request #211943 from davidsmatlak/ds-curp-move-images
Moves images to new directory
2 parents 1508e4b + 8ac5147 commit 8d420c9

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

articles/azure-resource-manager/custom-providers/tutorial-custom-providers-function-setup.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
title: Set up Azure Functions
3-
description: This tutorial goes over how to create a function app in Azure Functions and set it up to work with Azure Custom Providers.
4-
author: jjbfour
3+
description: This tutorial describes how to create a function app in Azure Functions that works with Azure Custom Providers.
54
ms.topic: tutorial
6-
ms.date: 05/06/2022
5+
ms.date: 09/20/2022
76
ms.author: jobreen
7+
author: jjbfour
88
---
99

1010
# Set up Azure Functions for custom providers
@@ -22,29 +22,29 @@ To start this tutorial, you should first follow the tutorial [Create your first
2222

2323
To install the Azure Table storage bindings:
2424

25-
1. Go to the **Integrate** tab for the HttpTrigger.
25+
1. Go to the **Integrate** tab for the `HttpTrigger`.
2626
1. Select **+ New Input**.
2727
1. Select **Azure Table Storage**.
28-
1. Install the Microsoft.Azure.WebJobs.Extensions.Storage extension if it isn't already installed.
28+
1. Install the `Microsoft.Azure.WebJobs.Extensions.Storage` extension if it isn't already installed.
2929
1. In the **Table parameter name** box, enter *tableStorage*.
3030
1. In the **Table name** box, enter *myCustomResources*.
3131
1. Select **Save** to save the updated input parameter.
3232

33-
![Custom provider overview showing table bindings](./media/create-custom-provider/azure-functions-table-bindings.png)
33+
:::image type="content" source="./media/tutorial-custom-providers-function-setup/azure-functions-table-bindings.png" alt-text="Screenshot of the custom provider overview showing table bindings.":::
3434

3535
## Update RESTful HTTP methods
3636

3737
To set up the Azure function to include the custom provider RESTful request methods:
3838

39-
1. Go to the **Integrate** tab for the HttpTrigger.
39+
1. Go to the **Integrate** tab for the `HttpTrigger`.
4040
1. Under **Selected HTTP methods**, select **GET**, **POST**, **DELETE**, and **PUT**.
4141

42-
![Custom provider overview showing HTTP methods](./media/create-custom-provider/azure-functions-http-methods.png)
42+
:::image type="content" source="./media/tutorial-custom-providers-function-setup/azure-functions-http-methods.png" alt-text="Screenshot of the custom provider overview showing HTTP methods.":::
4343

4444
## Add Azure Resource Manager NuGet packages
4545

4646
> [!NOTE]
47-
> If your C# project file is missing from the project directory, you can add it manually, or it will appear after the Microsoft.Azure.WebJobs.Extensions.Storage extension is installed on the function app.
47+
> If your C# project file is missing from the project directory, you can add it manually, or it will appear after the `Microsoft.Azure.WebJobs.Extensions.Storage` extension is installed on the function app.
4848
4949
Next, update the C# project file to include helpful NuGet libraries. These libraries make it easier to parse incoming requests from custom providers. Follow the steps to [add extensions from the portal](../../azure-functions/functions-bindings-register.md) and update the C# project file to include the following package references:
5050

0 commit comments

Comments
 (0)