Skip to content

Commit ed2bf87

Browse files
author
Glenn Gailey
committed
Tweak Sonia's edits
1 parent 3cb57d5 commit ed2bf87

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

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

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Create a function in Azure that responds to HTTP requests
33
description: Learn how to create a function from the command line, then publish the local project to serverless hosting in Azure Functions.
44
ms.date: 01/28/2020
55
ms.topic: quickstart
6-
zone_pivot_groups: programming-languages-set-functions
6+
77
---
88

99
# Quickstart: Create a function in Azure that responds to HTTP requests
@@ -18,7 +18,12 @@ Before you begin, you must have the following:
1818

1919
+ An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
2020

21+
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-powershell"
2122
+ The [Azure Functions Core Tools](./functions-run-local.md#v2) version 2.7.1846 or a later 2.x version.
23+
::: zone-end
24+
::: zone pivot="programming-language-python"
25+
+ Python 3.6 amd 3.7 requires [Azure Functions Core Tools](./functions-run-local.md#v2) version 2.7.1846 or a later 2.x version. Python 3.8 requires [version 3.x](./functions-run-local.md#v2) of the Core Tools.
26+
::: zone-end
2227

2328
+ The [Azure CLI](/cli/azure/install-azure-cli) version 2.0.76 or later.
2429
::: zone pivot="programming-language-javascript,programming-language-typescript"
@@ -263,10 +268,10 @@ Use the following Azure CLI commands to create these items. Each command provide
263268
264269
The storage account incurs only a few cents (USD) for this quickstart.
265270
266-
1. Create the Functions app using the [az functionapp create](/cli/azure/functionapp#az-functionapp-create) command. In the following example, replace `<STORAGE_NAME>` with the name of the account you used in the previous step, and replace `<APP_NAME>` with a globally unique name appropriate to you. The `<APP_NAME>` is also the default DNS domain for the function app.
271+
1. Create the function app using the [az functionapp create](/cli/azure/functionapp#az-functionapp-create) command. In the following example, replace `<STORAGE_NAME>` with the name of the account you used in the previous step, and replace `<APP_NAME>` with a globally unique name appropriate to you. The `<APP_NAME>` is also the default DNS domain for the function app.
267272
268273
::: zone pivot="programming-language-python"
269-
If you are using Python 3.8, change `--runtime-version` to `3.8` and `--functions_version` to `3`
274+
If you are using Python 3.8, change `--runtime-version` to `3.8` and `--functions_version` to `3`.
270275
271276
If you are using Python 3.6, change `--runtime-version` to `3.6`.
272277

includes/functions-supported-languages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ ms.custom: include file
1414
|Language |1.x |2.x| 3.x |
1515
|-----------------------------------------|------------|---| --- |
1616
|[C#](../articles/azure-functions/functions-reference-csharp.md)|GA (.NET Framework 4.7)|GA (.NET Core 2.2)| GA (.NET Core 3.1) |
17-
|[JavaScript](../articles/azure-functions/functions-reference-node.md)|GA (Node 6)|GA (Node 8 & 10)| GA (Node 10 & 12) |
17+
|[JavaScript](../articles/azure-functions/functions-reference-node.md#node-version)|GA (Node 6)|GA (Node 8 & 10)| GA (Node 10 & 12) |
1818
|[F#](../articles/azure-functions/functions-reference-fsharp.md)|GA (.NET Framework 4.7)|GA (.NET Core 2.2)| GA (.NET Core 3.1) |
1919
|[Java](../articles/azure-functions/functions-reference-java.md)|N/A|GA (Java 8)| GA (Java 8)|
2020
|[PowerShell](../articles/azure-functions/functions-reference-powershell.md) |N/A|GA (PowerShell Core 6)| GA (PowerShell Core 6)|
21-
|[Python](../articles/azure-functions/functions-reference-python.md)|N/A|GA (Python 3.6 & 3.7)| GA (Python 3.6, 3.7 & 3.8)|
21+
|[Python](../articles/azure-functions/functions-reference-python.md)#python-version|N/A|GA (Python 3.6 & 3.7)| GA (Python 3.6, 3.7, & 3.8)|
2222
|[TypeScript](../articles/azure-functions/functions-reference-node.md#typescript) |N/A|GA<sup>1</sup>| GA<sup>1</sup> |
2323

2424

0 commit comments

Comments
 (0)