Skip to content

Commit 87caa87

Browse files
committed
fix up links
1 parent b84dce6 commit 87caa87

File tree

51 files changed

+132
-223
lines changed

Some content is hidden

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

51 files changed

+132
-223
lines changed

articles/api-center/enable-api-analysis-linting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ To deploy the Azure Functions app that runs the linting function on API definiti
119119
1. Clone the [GitHub repository](https://github.com/Azure/APICenter-Analyzer/) and open it in Visual Studio Code.
120120
1. In the `resources/rulesets` folder, you can find an `oas.yaml` file. This file reflects your current API style guide and can be modified based on your organizational needs and requirements.
121121
1. Optionally, run the function app locally to test it. For details, see the [README](https://github.com/Azure/APICenter-Analyzer/tree/preview#-configure--run-your-function-locally) file in the repository.
122-
1. Deploy the function app to Azure. For steps, see [Quickstart: Create a function in Azure with TypeScript using Visual Studio Code](../azure-functions/create-first-function-vs-code-typescript.md#sign-in-to-azure).
122+
1. Deploy the function app to Azure. For steps, see [Quickstart: Create a function in Azure with TypeScript using Visual Studio Code](../azure-functions/how-to-create-function-vs-code.md?pivot=programming-language-typescript#sign-in-to-azure).
123123
124124
> [!NOTE]
125125
> Deploying the function app might take a few minutes.

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](./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.
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](./how-to-create-function-vs-code.md?pivot=programming-language-csharp), 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/consumption-plan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Use the following links to learn how to create a serverless function app in a Co
3939
- [Azure portal](./functions-get-started.md)
4040
- [Azure Resource Manager template](functions-create-first-function-resource-manager.md)
4141

42-
You can also create function apps in a Consumption plan when you publish a Functions project from [Visual Studio Code](./create-first-function-vs-code-csharp.md#publish-the-project-to-azure) or [Visual Studio](functions-create-your-first-function-visual-studio.md#publish-the-project-to-azure).
42+
You can also create function apps in a Consumption plan when you publish a Functions project from [Visual Studio Code](./how-to-create-function-vs-code.md?pivot=programming-language-csharp#publish-the-project-to-azure) or [Visual Studio](functions-create-your-first-function-visual-studio.md#publish-the-project-to-azure).
4343

4444
## Multiple apps in the same plan
4545

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

Lines changed: 1 addition & 1 deletion
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](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> |
25+
| <ul><li>[Using Visual Studio Code](how-to-create-function-vs-code.md?pivot=programming-language-csharp?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

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

Lines changed: 6 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -32,33 +32,13 @@ Function app resources are langauge-specific. Make sure to choose your preferred
3232

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

35-
::: zone pivot="programming-language-csharp"
36-
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-csharp)
37-
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-csharp.md)
38-
::: zone-end
39-
::: zone pivot="programming-language-javascript"
40-
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-javascript)
41-
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-node.md)
42-
::: zone-end
35+
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md)
36+
+ [Create an Azure Functions project using Visual Studio Code](how-to-create-function-vs-code.md)
37+
4338
::: zone pivot="programming-language-java"
44-
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-java)
45-
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-java.md)
46-
47-
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)
48-
::: zone-end
49-
::: zone pivot="programming-language-typescript"
50-
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-typescript)
51-
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-typescript.md)
39+
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)
5240
::: zone-end
53-
::: zone pivot="programming-language-python"
54-
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-python)
55-
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-python.md)
56-
::: zone-end
57-
::: zone pivot="programming-language-powershell"
58-
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-powershell)
59-
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-powershell.md)
60-
::: zone-end
61-
41+
6242
Return to this article after you create and run the local project, but before you're asked to create Azure resources. You create the function app and other Azure resources in the next section.
6343

6444
## Create a Flex Consumption app
@@ -297,7 +277,7 @@ You can use Maven to create a Flex Consumption hosted function app and required
297277
1. Create a Java code project by completing the first part of one of these quickstart articles:
298278
299279
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-java)
300-
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-java.md)
280+
+ [Create an Azure Functions project using Visual Studio Code](how-to-create-function-vs-code.md?pivot=programming-language-java)
301281
302282
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:
303283

articles/azure-functions/functions-add-openai-text-completion.md

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,8 @@ During this tutorial, you learn how to accomplish these tasks:
2828
> * Add OpenAI bindings to your HTTP triggered function.
2929
3030
## 1. Check prerequisites
31-
:::zone pivot="programming-language-csharp"
32-
* Complete the steps in [part 1 of the Visual Studio Code quickstart](create-first-function-vs-code-csharp.md).
33-
:::zone-end
34-
:::zone pivot="programming-language-java"
35-
* Complete the steps in [part 1 of the Visual Studio Code quickstart](create-first-function-vs-code-java.md).
36-
:::zone-end
37-
:::zone pivot="programming-language-javascript"
38-
* Complete the steps in [part 1 of the Visual Studio Code quickstart](create-first-function-vs-code-node.md).
39-
:::zone-end
40-
:::zone pivot="programming-language-typescript"
41-
* Complete the steps in [part 1 of the Visual Studio Code quickstart](create-first-function-vs-code-typescript.md).
42-
:::zone-end
43-
:::zone pivot="programming-language-python"
44-
* Complete the steps in [part 1 of the Visual Studio Code quickstart](create-first-function-vs-code-python.md).
45-
:::zone-end
46-
:::zone pivot="programming-language-powershell"
47-
* Complete the steps in [part 1 of the Visual Studio Code quickstart](create-first-function-vs-code-powershell.md).
48-
:::zone-end
31+
32+
* Complete the steps in [part 1 of Create a function in Azure using Visual Studio Code](how-to-create-function-vs-code.md).
4933
* Obtain access to Azure OpenAI in your Azure subscription. If you haven't already been granted access, complete [this form](https://aka.ms/oai/access) to request access.
5034
:::zone pivot="programming-language-csharp"
5135
* Install [.NET Core CLI tools](/dotnet/core/tools/?tabs=netcore2x).
@@ -114,7 +98,7 @@ You now have everything you need to add Azure OpenAI-based text completion to yo
11498

11599
## 4. Update application settings
116100

117-
1. In Visual Studio Code, open the local code project you created when you completed the [previous article](./create-first-function-vs-code-csharp.md).
101+
1. In Visual Studio Code, open the local code project you created when you completed the [previous article](./how-to-create-function-vs-code.md?pivot=programming-language-csharp).
118102

119103
1. In the local.settings.json file in the project root folder, update the `AzureWebJobsStorage` setting to `UseDevelopmentStorage=true`. You can skip this step if the `AzureWebJobsStorage` setting in *local.settings.json* is set to the connection string for an existing Azure Storage account instead of `UseDevelopmentStorage=true`.
120104

articles/azure-functions/functions-add-output-binding-azure-sql-vs-code.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ ms.custom: devx-track-extended-java, devx-track-js, devx-track-python
1919
This article shows you how to use Visual Studio Code to connect [Azure SQL Database](/azure/azure-sql/database/sql-database-paas-overview) to the function you created in the previous quickstart article. The output binding that you add to this function writes data from the HTTP request to a table in Azure SQL Database.
2020

2121
::: zone pivot="programming-language-csharp"
22-
Before you begin, you must complete the [quickstart: Create a C# function in Azure using Visual Studio Code](create-first-function-vs-code-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.
22+
Before you begin, you must complete the [quickstart: Create a C# function in Azure using Visual Studio Code](how-to-create-function-vs-code.md?pivot=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.
2323
::: zone-end
2424
::: zone pivot="programming-language-javascript"
25-
Before you begin, you must complete the [quickstart: Create a JavaScript function in Azure using Visual Studio Code](create-first-function-vs-code-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.
25+
Before you begin, you must complete the [quickstart: Create a JavaScript function in Azure using Visual Studio Code](how-to-create-function-vs-code.md?pivot=programming-language-javascript?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.
2626
::: zone-end
2727
::: zone pivot="programming-language-python"
28-
Before you begin, you must complete the [quickstart: Create a Python function in Azure using Visual Studio Code](create-first-function-vs-code-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.
28+
Before you begin, you must complete the [quickstart: Create a Python function in Azure using Visual Studio Code](how-to-create-function-vs-code.md?pivot=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.
2929
::: zone-end
3030

3131
More details on the settings for [Azure SQL bindings and trigger for Azure Functions](functions-bindings-azure-sql.md) are available in the Azure Functions documentation.
@@ -38,7 +38,7 @@ More details on the settings for [Azure SQL bindings and trigger for Azure Funct
3838

3939
|Prompt| Selection|
4040
|--|--|
41-
|**Resource group**|Choose the resource group where you created your function app in the [previous article](./create-first-function-vs-code-csharp.md). |
41+
|**Resource group**|Choose the resource group where you created your function app in the [previous article](./how-to-create-function-vs-code.md?pivot=programming-language-csharp). |
4242
|**Database name**|Enter `mySampleDatabase`.|
4343
|**Server name**|Enter a unique name for your server. We can't provide an exact server name to use because server names must be globally unique for all servers in Azure, not just unique within a subscription. |
4444
|**Authentication method**|Select **SQL Server authentication**.|
@@ -63,7 +63,7 @@ More details on the settings for [Azure SQL bindings and trigger for Azure Funct
6363

6464
## Update your function app settings
6565

66-
In the [previous quickstart article](./create-first-function-vs-code-csharp.md), you created a function app in Azure. In this article, you update your app to write data to the Azure SQL Database you've just created. To connect to your Azure SQL Database, you must add its connection string to your app settings. You then download the new setting to your local.settings.json file so you can connect to your Azure SQL Database when running locally.
66+
In the [previous quickstart article](./how-to-create-function-vs-code.md?pivot=programming-language-csharp), you created a function app in Azure. In this article, you update your app to write data to the Azure SQL Database you've just created. To connect to your Azure SQL Database, you must add its connection string to your app settings. You then download the new setting to your local.settings.json file so you can connect to your Azure SQL Database when running locally.
6767

6868
1. Edit the connection string in the temporary document you created earlier. Replace the value of `Password` with the password you used when creating the Azure SQL Database. Copy the updated connection string.
6969

0 commit comments

Comments
 (0)