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-resource-manager/custom-providers/tutorial-custom-providers-function-setup.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,11 @@ title: Set up Azure Functions
3
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
4
author: jjbfour
5
5
ms.topic: tutorial
6
-
ms.date: 06/19/2019
6
+
ms.date: 05/06/2022
7
7
ms.author: jobreen
8
8
---
9
9
10
-
# Set up Azure Functions for Azure Custom Providers
10
+
# Set up Azure Functions for custom providers
11
11
12
12
A custom provider is a contract between Azure and an endpoint. With custom providers, you can change workflows in Azure. This tutorial shows how to set up a function app in Azure Functions to work as a custom provider endpoint.
13
13
@@ -16,7 +16,7 @@ A custom provider is a contract between Azure and an endpoint. With custom provi
16
16
> [!NOTE]
17
17
> In this tutorial, you create a simple service endpoint that uses a function app in Azure Functions. However, a custom provider can use any publicly accessible endpoint. Alternatives include Azure Logic Apps, Azure API Management, and the Web Apps feature of Azure App Service.
18
18
19
-
To start this tutorial, you should first follow the tutorial [Create your first function app in the Azure portal](../../azure-functions/functions-get-started.md). That tutorial creates a .NET core webhook function that can be modified in the Azure portal. It is also the foundation for the current tutorial.
19
+
To start this tutorial, you should first follow the tutorial [Create your first function app in the Azure portal](../../azure-functions/functions-get-started.md). That tutorial creates a .NET core webhook function that can be modified in the Azure portal. It's also the foundation for the current tutorial.
20
20
21
21
## Install Azure Table storage bindings
22
22
@@ -26,8 +26,8 @@ To install the Azure Table storage bindings:
26
26
1. Select **+ New Input**.
27
27
1. Select **Azure Table Storage**.
28
28
1. Install the Microsoft.Azure.WebJobs.Extensions.Storage extension if it isn't already installed.
29
-
1. In the **Table parameter name** box, enter **tableStorage**.
30
-
1. In the **Table name** box, enter **myCustomResources**.
29
+
1. In the **Table parameter name** box, enter *tableStorage*.
30
+
1. In the **Table name** box, enter *myCustomResources*.
31
31
1. Select **Save** to save the updated input parameter.
@@ -44,7 +44,7 @@ To set up the Azure function to include the custom provider RESTful request meth
44
44
## Add Azure Resource Manager NuGet packages
45
45
46
46
> [!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.
48
48
49
49
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:
50
50
@@ -72,6 +72,6 @@ The following XML element is an example C# project file:
72
72
73
73
## Next steps
74
74
75
-
In this tutorial, you set up a function app in Azure Functions to work as an Azure custom provider endpoint.
75
+
In this tutorial, you set up a function app in Azure Functions to work as an Azure Custom Provider endpoint.
76
76
77
77
To learn how to author a RESTful custom provider endpoint, see [Tutorial: Authoring a RESTful custom provider endpoint](./tutorial-custom-providers-function-authoring.md).
0 commit comments