Skip to content

Commit 1a4f507

Browse files
committed
Link fixes to avoid using the redirects
1 parent c0026ec commit 1a4f507

File tree

44 files changed

+112
-110
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+112
-110
lines changed

articles/azure-functions/configure-monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ For a function app to send data to Application Insights, it needs to connect to
290290
| **[`APPLICATIONINSIGHTS_CONNECTION_STRING`](functions-app-settings.md#applicationinsights_connection_string)** | This setting is recommended and is required when your Application Insights instance runs in a sovereign cloud. The connection string supports other [new capabilities](/azure/azure-monitor/app/migrate-from-instrumentation-keys-to-connection-strings#new-capabilities). |
291291
| **[`APPINSIGHTS_INSTRUMENTATIONKEY`](functions-app-settings.md#appinsights_instrumentationkey)** | Legacy setting, which Application Insights has deprecated in favor of the connection string setting. |
292292

293-
When you create your function app in the [Azure portal](./functions-get-started.md) from the command line by using [Azure Functions Core Tools](./create-first-function-cli-csharp.md) or [Visual Studio Code](./create-first-function-vs-code-csharp.md), Application Insights integration is enabled by default. The Application Insights resource has the same name as your function app, and is created either in the same region or in the nearest region.
293+
When you create your function app in the [Azure portal](./functions-get-started.md) from the command line by using [Azure Functions Core Tools](./how-to-create-function-azure-cli.md?pivots=programming-language-csharp) or [Visual Studio Code](./create-first-function-vs-code-csharp.md), Application Insights integration is enabled by default. The Application Insights resource has the same name as your function app, and is created either in the same region or in the nearest region.
294294

295295
### Require Microsoft Entra authentication
296296

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ai-usage: ai-assisted
1212

1313
This article creates an HTTP triggered function that runs on .NET 8 in an isolated worker process. For information about .NET versions supported for C# functions, see [Supported versions](dotnet-isolated-process-guide.md#supported-versions).
1414

15-
There's also a [CLI-based version](create-first-function-cli-csharp.md) of this article.
15+
There's also a [CLI-based version](how-to-create-function-azure-cli.md?pivots=programming-language-csharp) of this article.
1616

1717
Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
1818

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In this article, you use Visual Studio Code to create a Java function that respo
2020
If Visual Studio Code isn't your preferred development tool, check out our similar tutorials for Java developers:
2121
+ [Gradle](./functions-create-first-java-gradle.md)
2222
+ [IntelliJ IDEA](/azure/developer/java/toolkit-for-intellij/quickstart-functions)
23-
+ [Maven](create-first-function-cli-java.md)
23+
+ [Maven](how-to-create-function-azure-cli.md?pivots=programming-language-java)
2424

2525
Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
2626

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Use Visual Studio Code to create a JavaScript function that responds to HTTP req
2020

2121
Completion of this quickstart incurs a small cost of a few USD cents or less in your Azure account.
2222

23-
There's also a [CLI-based version](create-first-function-cli-node.md) of this article.
23+
There's also a [CLI-based version](how-to-create-function-azure-cli.md?pivots=programming-language-node) of this article.
2424

2525
## Configure your environment
2626

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In this article, you use Visual Studio Code to create a PowerShell function that
1515

1616
Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
1717

18-
There's also a [CLI-based version](create-first-function-cli-powershell.md) of this article.
18+
There's also a [CLI-based version](how-to-create-function-azure-cli.md?pivots=programming-language-powershell) of this article.
1919

2020
## Configure your environment
2121

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This article uses the Python v2 programming model for Azure Functions, which pro
1616

1717
Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
1818

19-
There's also a [CLI-based version](create-first-function-cli-python.md) of this article.
19+
There's also a [CLI-based version](how-to-create-function-azure-cli.md?pivots=programming-language-python) of this article.
2020

2121
This video shows you how to create a Python function in Azure using Visual Studio Code.
2222
> [!VIDEO a1e10f96-2940-489c-bc53-da2b915c8fc2]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In this article, you use Visual Studio Code to create a TypeScript function that
1616

1717
Completion of this quickstart incurs a small cost of a few USD cents or less in your Azure account.
1818

19-
There's also a [CLI-based version](create-first-function-cli-typescript.md) of this article.
19+
There's also a [CLI-based version](how-to-create-function-azure-cli.md?pivots=programming-language-typescript) of this article.
2020

2121
## Configure your environment
2222

articles/azure-functions/dotnet-isolated-process-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Use the following links to get started right away building .NET isolated worker
2222

2323
| Getting started | Concepts| Samples |
2424
|--|--|--|
25-
| <ul><li>[Using Visual Studio Code](create-first-function-vs-code-csharp.md?tabs=isolated-process)</li><li>[Using command line tools](create-first-function-cli-csharp.md?tabs=isolated-process)</li><li>[Using Visual Studio](functions-create-your-first-function-visual-studio.md?tabs=isolated-process)</li></ul> | <ul><li>[Hosting options](functions-scale.md)</li><li>[Monitoring](functions-monitoring.md)</li> | <ul><li>[Reference samples](https://github.com/Azure/azure-functions-dotnet-worker/tree/main/samples)</li></ul> |
25+
| <ul><li>[Using Visual Studio Code](create-first-function-vs-code-csharp.md?tabs=isolated-process)</li><li>[Using command line tools](how-to-create-function-azure-cli.md?pivots=programming-language-csharp)</li><li>[Using Visual Studio](functions-create-your-first-function-visual-studio.md?tabs=isolated-process)</li></ul> | <ul><li>[Hosting options](functions-scale.md)</li><li>[Monitoring](functions-monitoring.md)</li> | <ul><li>[Reference samples](https://github.com/Azure/azure-functions-dotnet-worker/tree/main/samples)</li></ul> |
2626

2727
To learn just about deploying an isolated worker model project to Azure, see [Deploy to Azure Functions](#deploy-to-azure-functions).
2828

@@ -1164,7 +1164,7 @@ You can create your function app and other required resources in Azure using one
11641164

11651165
+ [Visual Studio](functions-develop-vs.md#publish-to-azure): Visual Studio can create resources for you during the code publishing process.
11661166
+ [Visual Studio Code](functions-develop-vs-code.md#publish-to-azure): Visual Studio Code can connect to your subscription, create the resources needed by your app, and then publish your code.
1167-
+ [Azure CLI](create-first-function-cli-csharp.md#create-supporting-azure-resources-for-your-function): You can use the Azure CLI to create the required resources in Azure.
1167+
+ [Azure CLI](how-to-create-function-azure-cli.md?pivots=programming-language-csharp#create-supporting-azure-resources-for-your-function): You can use the Azure CLI to create the required resources in Azure.
11681168
+ [Azure PowerShell](./create-resources-azure-powershell.md#create-a-serverless-function-app-for-c): You can use Azure PowerShell to create the required resources in Azure.
11691169
+ [Deployment templates](./functions-infrastructure-as-code.md): You can use ARM templates and Bicep files to automate the deployment of the required resources to Azure. Make sure your template includes any [required settings](#deployment-requirements).
11701170
+ [Azure portal](./functions-create-function-app-portal.md): You can create the required resources in the [Azure portal](https://portal.azure.com).

articles/azure-functions/flex-consumption-how-to.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,29 +33,29 @@ Function app resources are langauge-specific. Make sure to choose your preferred
3333
+ While not required to create a Flex Consumption plan app, you need a code project to be able to deploy to and validate a new function app. Complete the first part of one of these quickstart articles, where you create a code project with an HTTP triggered function:
3434

3535
::: zone pivot="programming-language-csharp"
36-
+ [Create an Azure Functions project from the command line](create-first-function-cli-csharp.md)
36+
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-csharp)
3737
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-csharp.md)
3838
::: zone-end
3939
::: zone pivot="programming-language-javascript"
40-
+ [Create an Azure Functions project from the command line](create-first-function-cli-node.md)
40+
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-javascript)
4141
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-node.md)
4242
::: zone-end
4343
::: zone pivot="programming-language-java"
44-
+ [Create an Azure Functions project from the command line](create-first-function-cli-java.md)
44+
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-java)
4545
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-java.md)
4646

4747
To create an app in a new Flex Consumption plan during a Maven deployment, you must create your local app project and then update the project's pom.xml file. For more information, see [Create a Java Flex Consumption app using Maven](#create-and-deploy-your-app-using-maven)
4848
::: zone-end
4949
::: zone pivot="programming-language-typescript"
50-
+ [Create an Azure Functions project from the command line](create-first-function-cli-typescript.md)
50+
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-typescript)
5151
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-typescript.md)
5252
::: zone-end
5353
::: zone pivot="programming-language-python"
54-
+ [Create an Azure Functions project from the command line](create-first-function-cli-python.md)
54+
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-python)
5555
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-python.md)
5656
::: zone-end
5757
::: zone pivot="programming-language-powershell"
58-
+ [Create an Azure Functions project from the command line](create-first-function-cli-powershell.md)
58+
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-powershell)
5959
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-powershell.md)
6060
::: zone-end
6161

@@ -296,7 +296,7 @@ You can use Maven to create a Flex Consumption hosted function app and required
296296
297297
1. Create a Java code project by completing the first part of one of these quickstart articles:
298298
299-
+ [Create an Azure Functions project from the command line](create-first-function-cli-java.md)
299+
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-java)
300300
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-java.md)
301301
302302
1. In your Java code project, open the pom.xml file and make these changes to create your function app in the Flex Consumption plan:

articles/azure-functions/functions-add-output-binding-storage-queue-cli.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@ In this article, you integrate an Azure Storage queue with the function and stor
1616
## Configure your local environment
1717

1818
::: zone pivot="programming-language-csharp"
19-
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](create-first-function-cli-csharp.md). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
19+
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-csharp). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
2020
::: zone-end
2121
::: zone pivot="programming-language-javascript"
22-
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](create-first-function-cli-node.md?pivot=nodejs-model-v3). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
22+
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-javascript). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
2323
::: zone-end
2424
::: zone pivot="programming-language-java"
25-
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](create-first-function-cli-java.md). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
25+
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-java). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
2626
::: zone-end
2727
::: zone pivot="programming-language-typescript"
28-
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](create-first-function-cli-typescript.md). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
28+
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-typescript). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
2929
::: zone-end
3030
::: zone pivot="programming-language-python"
31-
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](create-first-function-cli-python.md). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
31+
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-python). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
3232
::: zone-end
3333
::: zone pivot="programming-language-powershell"
34-
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](create-first-function-cli-powershell.md). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
34+
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-powershell). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
3535
::: zone-end
3636

3737
### Retrieve the Azure Storage connection string
@@ -165,34 +165,34 @@ You've updated your HTTP triggered function to write data to a Storage queue. No
165165

166166
+ [Azure Functions C# developer reference](functions-dotnet-class-library.md)
167167

168-
[previous-quickstart]: create-first-function-cli-csharp.md
168+
[previous-quickstart]: how-to-create-function-azure-cli.md?pivots=programming-language-csharp
169169

170170
::: zone-end
171171
::: zone pivot="programming-language-javascript"
172172
+ [Examples of complete Function projects in JavaScript](/samples/browse/?products=azure-functions&languages=javascript).
173173

174174
+ [Azure Functions JavaScript developer guide](functions-reference-node.md?tabs=javascript)
175175

176-
[previous-quickstart]: create-first-function-cli-javascript.md
176+
[previous-quickstart]: how-to-create-function-azure-cli.md?pivots=programming-language-javascript
177177
::: zone-end
178178
::: zone pivot="programming-language-typescript"
179179
+ [Examples of complete Function projects in TypeScript](/samples/browse/?products=azure-functions&languages=typescript).
180180

181181
+ [Azure Functions TypeScript developer guide](functions-reference-node.md?tabs=typescript)
182182

183-
[previous-quickstart]: create-first-function-cli-typescript.md
183+
[previous-quickstart]: how-to-create-function-azure-cli.md?pivots=programming-language-typescript
184184
::: zone-end
185185
::: zone pivot="programming-language-python"
186186
+ [Examples of complete Function projects in Python](/samples/browse/?products=azure-functions&languages=python).
187187

188188
+ [Azure Functions Python developer guide](functions-reference-python.md)
189189

190-
[previous-quickstart]: create-first-function-cli-python.md
190+
[previous-quickstart]: how-to-create-function-azure-cli.md?pivots=programming-language-python
191191
::: zone-end
192192
::: zone pivot="programming-language-powershell"
193193
+ [Examples of complete Function projects in PowerShell](/samples/browse/?products=azure-functions&languages=azurepowershell).
194194

195195
+ [Azure Functions PowerShell developer guide](functions-reference-powershell.md)
196196

197-
[previous-quickstart]: create-first-function-cli-powershell.md
197+
[previous-quickstart]: how-to-create-function-azure-cli.md?pivots=programming-language-powershell
198198
::: zone-end

0 commit comments

Comments
 (0)