Skip to content

Commit 084e176

Browse files
authored
Merge pull request #113358 from ggailey777/patch-8
Add pivots for H1 language-specific headings
2 parents cd3e122 + 4c14f84 commit 084e176

File tree

2 files changed

+60
-4
lines changed

2 files changed

+60
-4
lines changed

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

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,36 @@ ms.topic: quickstart
66
zone_pivot_groups: programming-languages-set-functions
77
---
88

9-
# Quickstart: Create a function in Azure that responds to HTTP requests
9+
::: zone pivot="programming-language-csharp"
10+
# Quickstart: Create a C# function in Azure that responds to HTTP requests
11+
12+
In this article, you use command-line tools to create a C# class library-based function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
13+
::: zone-end
14+
::: zone pivot="programming-language-javascript"
15+
# Quickstart: Create a JavaScript function in Azure that responds to HTTP requests
16+
17+
In this article, you use command-line tools to create a JavaScript function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
18+
::: zone-end
19+
::: zone pivot="programming-language-typescript"
20+
# Quickstart: Create a TypeScript function in Azure that responds to HTTP requests
21+
22+
In this article, you use command-line tools to create a TypeScript function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
23+
::: zone-end
24+
::: zone pivot="programming-language-powershell"
25+
# Quickstart: Create a PowerShell function in Azure that responds to HTTP requests
26+
27+
In this article, you use command-line tools to create a PowerShell function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
28+
::: zone-end
29+
::: zone pivot="programming-language-python"
30+
# Quickstart: Create a Python function in Azure that responds to HTTP requests
31+
32+
In this article, you use command-line tools to create a Python function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
33+
::: zone-end
34+
::: zone pivot="programming-language-java"
35+
# Quickstart: Create a Java function in Azure that responds to HTTP requests
36+
37+
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. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
38+
::: zone-end
1039

1140
In this article, you use command-line tools to create a function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
1241

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

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,40 @@ title: Create your first function in Azure using Visual Studio Code
33
description: Create and publish to Azure a simple HTTP triggered function by using Azure Functions extension in Visual Studio Code.
44
ms.topic: quickstart
55
ms.date: 01/10/2020
6-
ms.custom: mvc, devcenter
6+
ms.custom: mvc, devcenter, seo
77
zone_pivot_groups: programming-languages-set-functions
88
---
99

10-
# Quickstart: Create an Azure Functions project using Visual Studio Code
10+
::: zone pivot="programming-language-csharp"
11+
# Quickstart: Create a C# function in Azure using Visual Studio Code
12+
13+
In this article, you use Visual Studio Code to create a C# class library-based function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
14+
::: zone-end
15+
::: zone pivot="programming-language-javascript"
16+
# Quickstart: Create a JavaScript function in Azure using Visual Studio Code
1117

12-
In this article, you use Visual Studio Code to create a function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
18+
In this article, you use Visual Studio Code to create a JavaScript function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
19+
::: zone-end
20+
::: zone pivot="programming-language-typescript"
21+
# Quickstart: Create a TypeScript function in Azure using Visual Studio Code
22+
23+
In this article, you use Visual Studio Code to create a TypeScript function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
24+
::: zone-end
25+
::: zone pivot="programming-language-powershell"
26+
# Quickstart: Create a PowerShell function in Azure using Visual Studio Code
27+
28+
In this article, you use Visual Studio Code to create a PowerShell function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
29+
::: zone-end
30+
::: zone pivot="programming-language-python"
31+
# Quickstart: Create a Python function in Azure using Visual Studio Code
32+
33+
In this article, you use Visual Studio Code to create a Python function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
34+
::: zone-end
35+
::: zone pivot="programming-language-java"
36+
# Quickstart: Create a Java function in Azure using Visual Studio Code
37+
38+
In this article, you use Visual Studio Code 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. Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
39+
::: zone-end
1340

1441
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-python"
1542
There's also a [CLI-based version](functions-create-first-azure-function-azure-cli.md) of this article.

0 commit comments

Comments
 (0)