Skip to content

Commit bcdabb9

Browse files
author
Glenn Gailey
committed
title and metadata clean-up
1 parent f975b7c commit bcdabb9

13 files changed

+95
-52
lines changed

articles/azure-functions/create-first-function-cli-csharp.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Use C# to create a function in Azure to respond to HTTP
3-
description: Learn how to create a function from the command line using C#, then publish the local project to serverless hosting in Azure Functions.
4-
ms.date: 09/14/2020
2+
title: Create a C# function from the command line - Azure Functions
3+
description: Learn how to create a C# function from the command line, then publish the local project to serverless hosting in Azure Functions.
4+
ms.date: 10/03/2020
55
ms.topic: quickstart
66
ms.custom: [devx-track-csharp, devx-track-azurecli]
77
---
88

9-
# Quickstart: Create a function in Azure using C# that responds to HTTP requests
9+
# Quickstart: Create a C# function in Azure from the command line
1010

1111
[!INCLUDE [functions-language-selector-quickstart-cli](../../includes/functions-language-selector-quickstart-cli.md)]
1212

@@ -26,6 +26,8 @@ Before you begin, you must have the following:
2626

2727
+ The [Azure CLI](/cli/azure/install-azure-cli) version 2.4 or later.
2828

29+
+ (Optional) Azure PowerShell version 4.0 or later, when using PowerShell to create Azure resources.
30+
2931
### Prerequisite check
3032

3133
+ In a terminal or command window, run `func --version` to check that the Azure Functions Core Tools are version 3.x.
@@ -34,6 +36,8 @@ Before you begin, you must have the following:
3436

3537
+ Run `az login` to sign in to Azure and verify an active subscription.
3638

39+
+ (Optional) Run `(Get-Module -ListAvailable Az).Version` and verify version 4.0 or later, when using PowerShell to create Azure resources.
40+
3741
## Create a local function project
3842

3943
In Azure Functions, a function project is a container for one or more individual functions that each responds to a specific trigger. All functions in a project share the same local and hosting configurations. In this section, you create a function project that contains a single function.

articles/azure-functions/create-first-function-cli-java.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
---
2-
title: Use Java to create a function in Azure to respond to HTTP
3-
description: Learn how to create a function from the command line using Java, then publish the local project to serverless hosting in Azure Functions.
4-
ms.date: 09/14/2020
2+
title: Create a Java function from the command line - Azure Functions
3+
description: Learn how to create a Java function from the command line, then publish the local project to serverless hosting in Azure Functions.
4+
ms.date: 11/03/2020
55
ms.topic: quickstart
66
ms.custom: [devx-track-java, devx-track-azurecli]
77
---
88

9-
# Quickstart: Create a function in Azure using Java that responds to HTTP requests
9+
# Quickstart: Create a Java function in Azure from the command line
10+
11+
[!INCLUDE [functions-language-selector-quickstart-cli](../../includes/functions-language-selector-quickstart-cli.md)]
1012

1113
In this article, you use command-line tools to create a Java function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions.
1214

@@ -185,10 +187,20 @@ If you continue to the [next step](#next-steps) and add an Azure Storage queue o
185187
186188
Otherwise, use the following command to delete the resource group and all its contained resources to avoid incurring further costs.
187189
190+
# [Azure CLI](#tab/azure-cli)
191+
188192
```azurecli
189193
az group delete --name java-functions-group
190194
```
191195
196+
# [Azure PowerShell](#tab/azure-powershell)
197+
198+
```azurepowershell
199+
Remove-AzResourceGroup -Name java-functions-group
200+
```
201+
202+
---
203+
192204
## Next steps
193205
194206
> [!div class="nextstepaction"]

articles/azure-functions/create-first-function-cli-node.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
---
2-
title: Use JavaScript to create a function in Azure to respond to HTTP
3-
description: Learn how to create a function from the command line using JavaScript, then publish the local project to serverless hosting in Azure Functions.
4-
ms.date: 09/14/2020
2+
title: Create a JavaScript function from the command line - Azure Functions
3+
description: Learn how to create a JavaScript function from the command line, then publish the local Node.js project to serverless hosting in Azure Functions.
4+
ms.date: 11/03/2020
55
ms.topic: quickstart
66
ms.custom: devx-track-azurecli
77
---
88

9-
# Quickstart: Create a function in Azure using JavaScript that responds to HTTP requests
9+
# Quickstart: Create a JavaScript function in Azure from the command line
10+
1011

1112
[!INCLUDE [functions-language-selector-quickstart-cli](../../includes/functions-language-selector-quickstart-cli.md)]
1213

@@ -26,6 +27,8 @@ Before you begin, you must have the following:
2627

2728
+ The [Azure CLI](/cli/azure/install-azure-cli) version 2.4 or later.
2829

30+
+ (Optional) Azure PowerShell version 4.0 or later, when using PowerShell to create Azure resources.
31+
2932
+ [Node.js](https://nodejs.org/) version 12. Node.js version 10 is also supported.
3033

3134
### Prerequisite check
@@ -36,6 +39,8 @@ Before you begin, you must have the following:
3639

3740
+ Run `az login` to sign in to Azure and verify an active subscription.
3841

42+
+ (Optional) Run `(Get-Module -ListAvailable Az).Version` and verify version 4.0 or later, when using PowerShell to create Azure resources.
43+
3944
## Create a local function project
4045

4146
In Azure Functions, a function project is a container for one or more individual functions that each responds to a specific trigger. All functions in a project share the same local and hosting configurations. In this section, you create a function project that contains a single function.

articles/azure-functions/create-first-function-cli-powershell.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Use PowerShell to create a function in Azure to respond to HTTP
3-
description: Learn how to create a function from the command line using PowerShell, then publish the local project to serverless hosting in Azure Functions.
4-
ms.date: 09/14/2020
2+
title: Create a PowerShell function from the command line - Azure Functions
3+
description: Learn how to create a PowerShell function from the command line, then publish the local project to serverless hosting in Azure Functions.
4+
ms.date: 11/03/2020
55
ms.topic: quickstart
66
ms.custom: [devx-track-powershell, devx-track-azurecli]
77
---
88

9-
# Quickstart: Create a function in Azure using PowerShell that responds to HTTP requests
9+
# Quickstart: Create a PowerShell function in Azure from the command line
1010

1111
[!INCLUDE [functions-language-selector-quickstart-cli](../../includes/functions-language-selector-quickstart-cli.md)]
1212

@@ -26,6 +26,8 @@ Before you begin, you must have the following:
2626

2727
+ The [Azure CLI](/cli/azure/install-azure-cli) version 2.4 or later.
2828

29+
+ (Optional) Azure PowerShell version 4.0 or later, when using PowerShell to create Azure resources.
30+
2931
+ The [.NET Core SDK 3.1](https://www.microsoft.com/net/download)
3032

3133
### Prerequisite check
@@ -36,6 +38,8 @@ Before you begin, you must have the following:
3638

3739
+ Run `az login` to sign in to Azure and verify an active subscription.
3840

41+
+ (Optional) Run `(Get-Module -ListAvailable Az).Version` and verify version 4.0 or later, when using PowerShell to create Azure resources.
42+
3943
## Create a local function project
4044

4145
In Azure Functions, a function project is a container for one or more individual functions that each responds to a specific trigger. All functions in a project share the same local and hosting configurations. In this section, you create a function project that contains a single function.

articles/azure-functions/create-first-function-cli-python.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Use Python to create a function in Azure to respond to HTTP
3-
description: Learn how to create a function from the command line using Python, then publish the local project to serverless hosting in Azure Functions.
4-
ms.date: 09/14/2020
2+
title: Create a Python function from the command line - Azure Functions
3+
description: Learn how to create a Python function from the command line, then publish the local project to serverless hosting in Azure Functions.
4+
ms.date: 11/03/2020
55
ms.topic: quickstart
66
ms.custom: [devx-track-python, devx-track-azurecli]
77
---
88

9-
# Quickstart: Create a function in Azure using Python that responds to HTTP requests
9+
# Quickstart: Create a Python function in Azure from the command line
1010

1111
[!INCLUDE [functions-language-selector-quickstart-cli](../../includes/functions-language-selector-quickstart-cli.md)]
1212

@@ -26,6 +26,8 @@ Before you begin, you must have the following:
2626

2727
+ The [Azure CLI](/cli/azure/install-azure-cli) version 2.4 or later.
2828

29+
+ (Optional) Azure PowerShell version 4.0 or later, when using PowerShell to create Azure resources.
30+
2931
+ [Python 3.8 (64-bit)](https://www.python.org/downloads/release/python-382/), [Python 3.7 (64-bit)](https://www.python.org/downloads/release/python-375/), [Python 3.6 (64-bit)](https://www.python.org/downloads/release/python-368/), which are all supported by version 3.x of Azure Functions.
3032

3133
### Prerequisite check
@@ -36,6 +38,8 @@ Before you begin, you must have the following:
3638

3739
+ Run `az login` to sign in to Azure and verify an active subscription.
3840

41+
+ (Optional) Run `(Get-Module -ListAvailable Az).Version` and verify version 4.0 or later, when using PowerShell to create Azure resources.
42+
3943
+ Run `python --version` (Linux/MacOS) or `py --version` (Windows) to check your Python version reports 3.8.x, 3.7.x or 3.6.x.
4044

4145
## Create a local function project

articles/azure-functions/create-first-function-cli-typescript.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Use TypeScript to create a function in Azure to respond to HTTP
3-
description: Learn how to create a function from the command line using TypeScript, then publish the local project to serverless hosting in Azure Functions.
4-
ms.date: 09/14/2020
2+
title: Create a TypeScript function from the command line - Azure Functions
3+
description: Learn how to create a TypeScript function from the command line, then publish the local project to serverless hosting in Azure Functions.
4+
ms.date: 11/03/2020
55
ms.topic: quickstart
66
ms.custom: devx-track-azurecli
77
---
88

9-
# Quickstart: Create a function in Azure using TypeScript that responds to HTTP requests
9+
# Quickstart: Create a TypeScript function in Azure from the command line
1010

1111
[!INCLUDE [functions-language-selector-quickstart-cli](../../includes/functions-language-selector-quickstart-cli.md)]
1212

@@ -26,6 +26,8 @@ Before you begin, you must have the following:
2626

2727
+ The [Azure CLI](/cli/azure/install-azure-cli) version 2.4 or later.
2828

29+
+ (Optional) Azure PowerShell version 4.0 or later, when using PowerShell to create Azure resources.
30+
2931
+ [Node.js](https://nodejs.org/), Active LTS and Maintenance LTS versions (8.11.1 and 10.14.1 recommended).
3032

3133
### Prerequisite check
@@ -36,6 +38,8 @@ Before you begin, you must have the following:
3638

3739
+ Run `az login` to sign in to Azure and verify an active subscription.
3840

41+
+ (Optional) Run `(Get-Module -ListAvailable Az).Version` and verify version 4.0 or later, when using PowerShell to create Azure resources.
42+
3943
## Create a local function project
4044

4145
In Azure Functions, a function project is a container for one or more individual functions that each responds to a specific trigger. All functions in a project share the same local and hosting configurations. In this section, you create a function project that contains a single function.

articles/azure-functions/create-first-function-vs-code-csharp.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Create a function in Azure with C# using VS Code
3-
description: Create and publish to Azure a simple HTTP triggered function by using Azure Functions extension in Visual Studio Code using C#.
2+
title: Create a C# function using Visual Studio Code - Azure Functions
3+
description: Learn how to create a C# function, then publish the local project to serverless hosting in Azure Functions using the Azure Functions extension in Visual Studio Code.
44
ms.topic: quickstart
5-
ms.date: 09/14/2020
5+
ms.date: 11/03/2020
66
ms.custom: devx-track-csharp
77
---
88

9-
# Quickstart: Create a function in Azure with C# using Visual Studio Code
9+
# Quickstart: Create a C# function in Azure using Visual Studio Code
1010

1111
[!INCLUDE [functions-language-selector-quickstart-vs-code](../../includes/functions-language-selector-quickstart-vs-code.md)]
1212

@@ -33,7 +33,7 @@ Before you get started, make sure you have the following requirements in place:
3333

3434
## <a name="create-an-azure-functions-project"></a>Create your local project
3535

36-
In this section, you use Visual Studio Code to create a local Azure Functions project in your chosen language. Later in this article, you'll publish your function code to Azure.
36+
In this section, you use Visual Studio Code to create a local Azure Functions project in C#. Later in this article, you'll publish your function code to Azure.
3737

3838
1. Choose the Azure icon in the Activity bar, then in the **Azure: Functions** area, select the **Create new project...** icon.
3939

articles/azure-functions/create-first-function-vs-code-java.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Create a function in Azure with Java using VS Code
3-
description: Create and publish to Azure a simple HTTP triggered function by using Azure Functions extension in Visual Studio Code using Java.
2+
title: Create a Java function using Visual Studio Code - Azure Functions
3+
description: Learn how to create a Java function, then publish the local project to serverless hosting in Azure Functions using the Azure Functions extension in Visual Studio Code.
44
ms.topic: quickstart
5-
ms.date: 10/14/2020
5+
ms.date: 11/03/2020
66
---
77

8-
# Quickstart: Create a function in Azure with Java using Visual Studio Code
8+
# Quickstart: Create a Java function in Azure using Visual Studio Code
99

1010
[!INCLUDE [functions-language-selector-quickstart-vs-code](../../includes/functions-language-selector-quickstart-vs-code.md)]
1111

@@ -34,7 +34,7 @@ Before you get started, make sure you have the following requirements in place:
3434

3535
## <a name="create-an-azure-functions-project"></a>Create your local project
3636

37-
In this section, you use Visual Studio Code to create a local Azure Functions project in your chosen language. Later in this article, you'll publish your function code to Azure.
37+
In this section, you use Visual Studio Code to create a local Azure Functions project in Java. Later in this article, you'll publish your function code to Azure.
3838

3939
1. Choose the Azure icon in the Activity bar, then in the **Azure: Functions** area, select the **Create new project...** icon.
4040

articles/azure-functions/create-first-function-vs-code-node.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Create a function in Azure with JavaScript using VS Code
3-
description: Create and publish to Azure a simple HTTP triggered function by using Azure Functions extension in Visual Studio Code using JavaScript.
2+
title: Create a JavaScript function using Visual Studio Code - Azure Functions
3+
description: Learn how to create a JavaScript function, then publish the local Node.js project to serverless hosting in Azure Functions using the Azure Functions extension in Visual Studio Code.
44
ms.topic: quickstart
5-
ms.date: 09/14/2020
5+
ms.date: 11/03/2020
66
---
77

8-
# Quickstart: Create a function in Azure with JavaScript using Visual Studio Code
8+
# Quickstart: Create a JavaScript function in Azure using Visual Studio Code
99

1010
[!INCLUDE [functions-language-selector-quickstart-vs-code](../../includes/functions-language-selector-quickstart-vs-code.md)]
1111

@@ -29,7 +29,7 @@ Before you get started, make sure you have the following requirements in place:
2929

3030
## <a name="create-an-azure-functions-project"></a>Create your local project
3131

32-
In this section, you use Visual Studio Code to create a local Azure Functions project in your chosen language. Later in this article, you'll publish your function code to Azure.
32+
In this section, you use Visual Studio Code to create a local Azure Functions project in JavaScript. Later in this article, you'll publish your function code to Azure.
3333

3434
1. Choose the Azure icon in the Activity bar, then in the **Azure: Functions** area, select the **Create new project...** icon.
3535

articles/azure-functions/create-first-function-vs-code-powershell.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Create a function in Azure with PowerShell using VS Code
3-
description: Create and publish to Azure a simple HTTP triggered function by using Azure Functions extension in Visual Studio Code using PowerShell.
2+
title: Create a PowerShell function using Visual Studio Code - Azure Functions
3+
description: Learn how to create a PowerShell function, then publish the local project to serverless hosting in Azure Functions using the Azure Functions extension in Visual Studio Code.
44
ms.topic: quickstart
5-
ms.date: 09/14/2020
5+
ms.date: 11/04/2020
66
---
77

8-
# Quickstart: Create a function in Azure with PowerShell using Visual Studio Code
8+
# Quickstart: Create a PowerShell function in Azure using Visual Studio Code
99

1010
[!INCLUDE [functions-language-selector-quickstart-vs-code](../../includes/functions-language-selector-quickstart-vs-code.md)]
1111

@@ -36,7 +36,7 @@ Before you get started, make sure you have the following requirements in place:
3636

3737
## <a name="create-an-azure-functions-project"></a>Create your local project
3838

39-
In this section, you use Visual Studio Code to create a local Azure Functions project in your chosen language. Later in this article, you'll publish your function code to Azure.
39+
In this section, you use Visual Studio Code to create a local Azure Functions project in PowerShell. Later in this article, you'll publish your function code to Azure.
4040

4141
1. Choose the Azure icon in the Activity bar, then in the **Azure: Functions** area, select the **Create new project...** icon.
4242

articles/azure-functions/create-first-function-vs-code-python.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
title: Create a function in Azure with Python using VS Code
3-
description: Create and publish to Azure a simple HTTP triggered function by using Azure Functions extension in Visual Studio Code using Python.
2+
title: Create a Python function using Visual Studio Code - Azure Functions
3+
description: Learn how to create a Python function, then publish the local project to serverless hosting in Azure Functions using the Azure Functions extension in Visual Studio Code.
44
ms.topic: quickstart
5-
ms.date: 09/14/2020
5+
ms.date: 11/04/2020
66
ms.custom: devx-track-python
77
---
88

@@ -35,7 +35,7 @@ Before you get started, make sure you have the following requirements in place:
3535

3636
## <a name="create-an-azure-functions-project"></a>Create your local project
3737

38-
In this section, you use Visual Studio Code to create a local Azure Functions project in your chosen language. Later in this article, you'll publish your function code to Azure.
38+
In this section, you use Visual Studio Code to create a local Azure Functions project in Python. Later in this article, you'll publish your function code to Azure.
3939

4040
1. Choose the Azure icon in the Activity bar, then in the **Azure: Functions** area, select the **Create new project...** icon.
4141

articles/azure-functions/create-first-function-vs-code-typescript.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
title: Create a function in Azure with TypeScript using VS Code
3-
description: Create and publish to Azure a simple HTTP triggered function by using Azure Functions extension in Visual Studio Code by using TypeScript.
2+
title: Create a TypeScript function using Visual Studio Code - Azure Functions
3+
description: Learn how to create a TypeScript function, then publish the local Node.js project to serverless hosting in Azure Functions using the Azure Functions extension in Visual Studio Code.
44
ms.topic: quickstart
5-
ms.date: 09/14/2020
5+
ms.date: 11/04/2020
66
---
77

88
# Quickstart: Create a function in Azure with TypeScript using Visual Studio Code
@@ -29,7 +29,7 @@ Before you get started, make sure you have the following requirements in place:
2929

3030
## <a name="create-an-azure-functions-project"></a>Create your local project
3131

32-
In this section, you use Visual Studio Code to create a local Azure Functions project in your chosen language. Later in this article, you'll publish your function code to Azure.
32+
In this section, you use Visual Studio Code to create a local Azure Functions project in TypeScript. Later in this article, you'll publish your function code to Azure.
3333

3434
1. Choose the Azure icon in the Activity bar, then in the **Azure: Functions** area, select the **Create new project...** icon.
3535

includes/functions-cleanup-resources-cli.md

+10
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@ If you continue to the [next step](#next-steps) and add an Azure Storage queue o
1212

1313
Otherwise, use the following command to delete the resource group and all its contained resources to avoid incurring further costs.
1414

15+
# [Azure CLI](#tab/azure-cli)
16+
1517
```azurecli
1618
az group delete --name AzureFunctionsQuickstart-rg
1719
```
20+
21+
# [Azure PowerShell](#tab/azure-powershell)
22+
23+
```azurepowershell
24+
Remove-AzResourceGroup -Name AzureFunctionsQuickstart-rg
25+
```
26+
27+
---

0 commit comments

Comments
 (0)