Skip to content

Commit 0e9d4b4

Browse files
Fix file locations.
1 parent 21a12d8 commit 0e9d4b4

14 files changed

+40
-40
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Before you begin, you must have the following:
2020

2121
+ 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).
2222

23-
+ The [Azure Functions Core Tools](../articles/azure-functions/functions-run-local.md#v2) version 2.7.1846 or a later 2.x version.
23+
+ The [Azure Functions Core Tools](functions-run-local.md#v2) version 2.7.1846 or a later 2.x version.
2424

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

@@ -98,7 +98,7 @@ Http Functions:
9898
9999
Copy the URL of your `HttpExample` function from this output to a browser and append the query string `?name=<your-name>`, making the full URL like `http://localhost:7071/api/HttpExample?name=Functions`. The browser should display a message like `Hello Functions`:
100100

101-
![Result of the function run locally in the browser](./media/functions-run-function-test-local-cli/function-test-local-browser.png)
101+
![Result of the function run locally in the browser](./media/functions-create-first-azure-function-azure-cli/function-test-local-browser.png)
102102

103103
The terminal in which you started your project also shows log output as you make requests.
104104

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.custom: devx-track-java
88

99
# Quickstart: Create a function in Azure using Java that responds to HTTP requests
1010

11-
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.
11+
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.
1212

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

@@ -23,14 +23,14 @@ Before you begin, you must have the following:
2323

2424
+ 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).
2525

26-
+ The [Azure Functions Core Tools](../articles/azure-functions/functions-run-local.md#v2) version 2.7.1846 or a later 2.x version.
26+
+ The [Azure Functions Core Tools](functions-run-local.md#v2) version 2.7.1846 or a later 2.x version.
2727

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

30-
+ The [Java Developer Kit](https://aka.ms/azure-jdks), version 8.
30+
+ The [Java Developer Kit](https://aka.ms/azure-jdks), version 8.
3131

3232
> [!IMPORTANT]
33-
> + Functions support for Java 11 is currently in preview, and the Maven archetype creates a Java 8 deployment by default. If you want to instead run your function app on Java 11, you must manually update the pom.xml file with Java 11 values. To learn more, see [Java versions](../articles/azure-functions/functions-reference-java.md#java-versions).
33+
> + Functions support for Java 11 is currently in preview, and the Maven archetype creates a Java 8 deployment by default. If you want to instead run your function app on Java 11, you must manually update the pom.xml file with Java 11 values. To learn more, see [Java versions](functions-reference-java.md#java-versions).
3434
> + The `JAVA_HOME` environment variable must be set to the install location of the correct version of the JDK to complete this quickstart.
3535
3636
+ [Apache Maven](https://maven.apache.org), version 3.0 or above.
@@ -145,7 +145,7 @@ Http Functions:
145145
146146
Copy the URL of your `HttpExample` function from this output to a browser and append the query string `?name=<your-name>`, making the full URL like `http://localhost:7071/api/HttpExample?name=Functions`. The browser should display a message like `Hello Functions`:
147147

148-
![Result of the function run locally in the browser](./media/functions-run-function-test-local-cli/function-test-local-browser.png)
148+
![Result of the function run locally in the browser](./media/functions-create-first-azure-function-azure-cli/function-test-local-browser.png)
149149

150150
The terminal in which you started your project also shows log output as you make requests.
151151

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Before you begin, you must have the following:
2020

2121
+ 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).
2222

23-
+ The [Azure Functions Core Tools](../articles/azure-functions/functions-run-local.md#v2) version 2.7.1846 or a later 2.x version.
23+
+ The [Azure Functions Core Tools](functions-run-local.md#v2) version 2.7.1846 or a later 2.x version.
2424

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

@@ -108,7 +108,7 @@ Http Functions:
108108
109109
Copy the URL of your `HttpExample` function from this output to a browser and append the query string `?name=<your-name>`, making the full URL like `http://localhost:7071/api/HttpExample?name=Functions`. The browser should display a message like `Hello Functions`:
110110

111-
![Result of the function run locally in the browser](./media/functions-run-function-test-local-cli/function-test-local-browser.png)
111+
![Result of the function run locally in the browser](media/function-test-local-browser.png)
112112

113113
The terminal in which you started your project also shows log output as you make requests.
114114

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.custom: devx-track-powershell
88

99
# Quickstart: Create a function in Azure using PowerShell that responds to HTTP requests
1010

11-
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.
11+
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.
1212

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

@@ -20,7 +20,7 @@ Before you begin, you must have the following:
2020

2121
+ 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).
2222

23-
+ The [Azure Functions Core Tools](../articles/azure-functions/functions-run-local.md#v2) version 2.7.1846 or a later 2.x version.
23+
+ The [Azure Functions Core Tools](functions-run-local.md#v2) version 2.7.1846 or a later 2.x version.
2424

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

@@ -108,7 +108,7 @@ Http Functions:
108108
109109
Copy the URL of your `HttpExample` function from this output to a browser and append the query string `?name=<your-name>`, making the full URL like `http://localhost:7071/api/HttpExample?name=Functions`. The browser should display a message like `Hello Functions`:
110110

111-
![Result of the function run locally in the browser](./media/functions-run-function-test-local-cli/function-test-local-browser.png)
111+
![Result of the function run locally in the browser](./media/functions-create-first-azure-function-azure-cli/function-test-local-browser.png)
112112

113113
The terminal in which you started your project also shows log output as you make requests.
114114

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.custom: devx-track-python
88

99
# Quickstart: Create a function in Azure using Python that responds to HTTP requests
1010

11-
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.
11+
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.
1212

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

@@ -24,10 +24,10 @@ Before you begin, you must have the following:
2424

2525
| Python version | Core Tools version |
2626
| -------------- | ------------------ |
27-
| Python 3.8 | [version 3.x](../articles/azure-functions/functions-run-local.md#v2) |
28-
| Python 3.6<br/>Python 3.7 | [Version 2.7.1846 or a later version](../articles/azure-functions/functions-run-local.md#v2) |
27+
| Python 3.8 | [version 3.x](functions-run-local.md#v2) |
28+
| Python 3.6<br/>Python 3.7 | [Version 2.7.1846 or a later version](functions-run-local.md#v2) |
2929

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

3232
+ [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 supported by Azure Functions.
3333

@@ -117,7 +117,7 @@ Http Functions:
117117
118118
Copy the URL of your `HttpExample` function from this output to a browser and append the query string `?name=<your-name>`, making the full URL like `http://localhost:7071/api/HttpExample?name=Functions`. The browser should display a message like `Hello Functions`:
119119

120-
![Result of the function run locally in the browser](./media/functions-run-function-test-local-cli/function-test-local-browser.png)
120+
![Result of the function run locally in the browser](./media/functions-create-first-azure-function-azure-cli/function-test-local-browser.png)
121121

122122
The terminal in which you started your project also shows log output as you make requests.
123123

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Before you begin, you must have the following:
2020

2121
+ 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).
2222

23-
+ The [Azure Functions Core Tools](../articles/azure-functions/functions-run-local.md#v2) version 2.7.1846 or a later 2.x version.
23+
+ The [Azure Functions Core Tools](functions-run-local.md#v2) version 2.7.1846 or a later 2.x version.
2424

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

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
3535

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

38-
![Choose Create a new project](media/functions-create-first-function-vs-code/create-new-project.png)
38+
![Choose Create a new project](./media/functions-create-first-function-vs-code/create-new-project.png)
3939

4040
1. Choose a directory location for your project workspace and choose **Select**.
4141

@@ -73,7 +73,7 @@ In this section, you create a function app and related resources in your Azure s
7373
7474
1. Choose the Azure icon in the Activity bar, then in the **Azure: Functions** area, choose the **Deploy to function app...** button.
7575

76-
![Publish your project to Azure](media/functions-publish-project-vscode/function-app-publish-project.png)
76+
![Publish your project to Azure](./media/functions-create-first-function-vs-code/function-app-publish-project.png)
7777

7878
1. Provide the following information at the prompts:
7979

@@ -101,7 +101,7 @@ In this section, you create a function app and related resources in your Azure s
101101

102102
1. Select **View Output** in this notification to view the creation and deployment results, including the Azure resources that you created. If you miss the notification, select the bell icon in the lower right corner to see it again.
103103

104-
![Create complete notification](media/functions-publish-project-vscode/function-create-notifications.png)
104+
![Create complete notification](./media/functions-create-first-function-vs-code/function-create-notifications.png)
105105

106106

107107
## Run the function in Azure

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
3939

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

42-
![Choose Create a new project](media/functions-create-first-function-vs-code/create-new-project.png)
42+
![Choose Create a new project](./media/functions-create-first-function-vs-code/create-new-project.png)
4343

4444
1. Choose a directory location for your project workspace and choose **Select**.
4545

@@ -74,15 +74,15 @@ After you've verified that the function runs correctly on your local computer, i
7474

7575
## Publish the project to Azure
7676

77-
In this section, you create a function app and related resources in your Azure subscription and then deploy your code.
77+
In this section, you create a function app and related resources in your Azure subscription and then deploy your code.
7878

7979
> [!IMPORTANT]
80-
> Publishing to an existing function app overwrites the content of that app in Azure.
80+
> Publishing to an existing function app overwrites the content of that app in Azure.
8181
8282

8383
1. Choose the Azure icon in the Activity bar, then in the **Azure: Functions** area, choose the **Deploy to function app...** button.
8484

85-
![Publish your project to Azure](media/functions-publish-project-vscode/function-app-publish-project.png)
85+
![Publish your project to Azure](./media/functions-create-first-function-vs-code/function-app-publish-project.png)
8686

8787
1. Provide the following information at the prompts:
8888

@@ -94,7 +94,7 @@ In this section, you create a function app and related resources in your Azure s
9494

9595
+ **Enter a globally unique name for the function app**: Type a name that is valid in a URL path. The name you type is validated to make sure that it's unique in Azure Functions.
9696

97-
+ **Select a location for new resources**: For better performance, choose a [region](https://azure.microsoft.com/regions/) near you.
97+
+ **Select a location for new resources**: For better performance, choose a [region](https://azure.microsoft.com/regions/) near you.
9898

9999
1. When completed, the following Azure resources are created in your subscription, using names based on your function app name:
100100

@@ -108,7 +108,7 @@ In this section, you create a function app and related resources in your Azure s
108108

109109
1. Select **View Output** in this notification to view the creation and deployment results, including the Azure resources that you created. If you miss the notification, select the bell icon in the lower right corner to see it again.
110110

111-
![Create complete notification](media/functions-publish-project-vscode/function-create-notifications.png)
111+
![Create complete notification](./media/functions-publish-project-vscode/function-create-notifications.png)
112112

113113
## Run the function in Azure
114114

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
3232

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

35-
![Choose Create a new project](media/functions-create-first-function-vs-code/create-new-project.png)
35+
![Choose Create a new project](./media/functions-create-first-function-vs-code/create-new-project.png)
3636

3737
1. Choose a directory location for your project workspace and choose **Select**.
3838

@@ -69,7 +69,7 @@ In this section, you create a function app and related resources in your Azure s
6969

7070
1. Choose the Azure icon in the Activity bar, then in the **Azure: Functions** area, choose the **Deploy to function app...** button.
7171

72-
![Publish your project to Azure](media/functions-publish-project-vscode/function-app-publish-project.png)
72+
![Publish your project to Azure](./media/functions-create-first-function-vs-code/function-app-publish-project.png)
7373

7474
1. Provide the following information at the prompts:
7575

@@ -97,7 +97,7 @@ In this section, you create a function app and related resources in your Azure s
9797

9898
1. Select **View Output** in this notification to view the creation and deployment results, including the Azure resources that you created. If you miss the notification, select the bell icon in the lower right corner to see it again.
9999

100-
![Create complete notification](media/functions-publish-project-vscode/function-create-notifications.png)
100+
![Create complete notification](./media/functions-create-first-function-vs-code/function-create-notifications.png)
101101

102102
## Run the function in Azure
103103

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
3939

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

42-
![Choose Create a new project](media/functions-create-first-function-vs-code/create-new-project.png)
42+
![Choose Create a new project](./media/functions-create-first-function-vs-code/create-new-project.png)
4343

4444
1. Choose a directory location for your project workspace and choose **Select**.
4545

@@ -75,7 +75,7 @@ In this section, you create a function app and related resources in your Azure s
7575
7676
1. Choose the Azure icon in the Activity bar, then in the **Azure: Functions** area, choose the **Deploy to function app...** button.
7777

78-
![Publish your project to Azure](media/functions-publish-project-vscode/function-app-publish-project.png)
78+
![Publish your project to Azure](./media/functions-create-first-function-vs-code/function-app-publish-project.png)
7979

8080
1. Provide the following information at the prompts:
8181

@@ -101,7 +101,7 @@ In this section, you create a function app and related resources in your Azure s
101101

102102
1. Select **View Output** in this notification to view the creation and deployment results, including the Azure resources that you created. If you miss the notification, select the bell icon in the lower right corner to see it again.
103103

104-
![Create complete notification](media/functions-publish-project-vscode/function-create-notifications.png)
104+
![Create complete notification](./media/functions-create-first-function-vs-code/function-create-notifications.png)
105105

106106
## Run the function in Azure
107107

0 commit comments

Comments
 (0)