Skip to content

Commit f8e8402

Browse files
authored
Merge pull request #197391 from schaffererin/acrp-azure-functions
Updates to Set up Azure Functions tutorial
2 parents 4d37599 + 67507de commit f8e8402

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ title: Set up Azure Functions
33
description: This tutorial goes over how to create a function app in Azure Functions and set it up to work with Azure Custom Providers.
44
author: jjbfour
55
ms.topic: tutorial
6-
ms.date: 06/19/2019
6+
ms.date: 05/06/2022
77
ms.author: jobreen
88
---
99

10-
# Set up Azure Functions for Azure Custom Providers
10+
# Set up Azure Functions for custom providers
1111

1212
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.
1313

@@ -16,7 +16,7 @@ A custom provider is a contract between Azure and an endpoint. With custom provi
1616
> [!NOTE]
1717
> 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.
1818
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.
2020

2121
## Install Azure Table storage bindings
2222

@@ -26,8 +26,8 @@ To install the Azure Table storage bindings:
2626
1. Select **+ New Input**.
2727
1. Select **Azure Table Storage**.
2828
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*.
3131
1. Select **Save** to save the updated input parameter.
3232

3333
![Custom provider overview showing table bindings](./media/create-custom-provider/azure-functions-table-bindings.png)
@@ -44,7 +44,7 @@ To set up the Azure function to include the custom provider RESTful request meth
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

@@ -72,6 +72,6 @@ The following XML element is an example C# project file:
7272

7373
## Next steps
7474

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

7777
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

Comments
 (0)