Skip to content

Commit 43f15cc

Browse files
committed
Remove old image folder
1 parent a1ac676 commit 43f15cc

14 files changed

+17
-15
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ In this section, you create a function app and related resources in your Azure s
7070

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

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ In this section, you create a function app and related resources in your Azure s
303303
304304
1. Choose the Azure icon in the Activity bar, then in the **Azure: Functions** area, choose the **Deploy to function app...** button.
305305
306-
![Publish your project to Azure](./media/functions-create-first-function-vs-code/function-app-publish-project.png)
306+
![Publish your project to Azure](../../includes/media/functions-publish-project-vscode/function-app-publish-project.png)
307307
308308
1. Provide the following information at the prompts:
309309

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ In this section, you create a function app and related resources in your Azure s
7777
7878
1. Choose the Azure icon in the Activity bar, then in the **Azure: Functions** area, choose the **Deploy to function app...** button.
7979

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

8282
1. Provide the following information at the prompts:
8383

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -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-create-first-function-vs-code/function-app-publish-project.png)
72+
![Publish your project to Azure](../../includes/media/functions-publish-project-vscode/function-app-publish-project.png)
7373

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

articles/azure-functions/functions-develop-vs-code.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -337,24 +337,26 @@ The following steps publish your project to a new function app created with adva
337337

338338
A notification appears after your function app is created and the deployment package is applied. Select **View Output** in this notification to view the creation and deployment results, including the Azure resources that you created.
339339

340-
## Republish project files
340+
### Get the URL of an HTTP triggered function in Azure
341341

342-
When you set up [continuous deployment](functions-continuous-deployment.md), your function app in Azure is updated when you update source files in the connected source location. We recommend continuous deployment, but you can also republish your project file updates from Visual Studio Code.
342+
To call an HTTP-triggered function from a client, you need the URL of the function when it's deployed to your function app. This URL includes any required function keys. You can use the extension to get these URLs for your deployed functions. If you just want to run the remote function in Azure, use the [Execute function now functionality of the extension](#run-functions-in-azure).
343343

344-
> [!IMPORTANT]
345-
> Publishing to an existing function app overwrites the content of that app in Azure.
344+
1. Select F1 to open the command palette, and then search for and run the command **Azure Functions: Copy Function URL**.
346345

347-
[!INCLUDE [functions-republish-vscode](../../includes/functions-republish-vscode.md)]
346+
1. Follow the prompts to select your function app in Azure and then the specific HTTP trigger that you want to invoke.
348347

349-
## Get the URL of the deployed function
348+
The function URL is copied to the clipboard, along with any required keys passed by the `code` query parameter. Use an HTTP tool to submit POST requests, or a browser for GET requests to the remote function.
350349

351-
To call an HTTP-triggered function, you need the URL of the function when it's deployed to your function app. This URL includes any required [function keys](functions-bindings-http-webhook-trigger.md#authorization-keys). You can use the extension to get these URLs for your deployed functions.
350+
When getting the URL of functions in Azure, the extension uses your Azure account to automatically retrieve the keys it needs to start the function. [Learn more about function access keys](security-concepts.md#function-access-keys). Starting non-HTTP triggered functions requires using the admin key.
352351

353-
1. Select F1 to open the command palette, and then search for and run the command **Azure Functions: Copy Function URL**.
352+
## Republish project files
354353

355-
1. Follow the prompts to select your function app in Azure and then the specific HTTP trigger that you want to invoke.
354+
When you set up [continuous deployment](functions-continuous-deployment.md), your function app in Azure is updated when you update source files in the connected source location. We recommend continuous deployment, but you can also republish your project file updates from Visual Studio Code.
356355

357-
The function URL is copied to the clipboard, along with any required keys passed by the `code` query parameter. Use an HTTP tool to submit POST requests, or a browser for GET requests to the remote function.
356+
> [!IMPORTANT]
357+
> Publishing to an existing function app overwrites the content of that app in Azure.
358+
359+
[!INCLUDE [functions-republish-vscode](../../includes/functions-republish-vscode.md)]
358360

359361
## Run functions
360362

includes/functions-publish-project-vscode.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In this section, you create a function app and related resources in your Azure s
1616

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

19-
![Publish your project to Azure](media/functions-publish-project-vscode/function-app-publish-project.png)
19+
![Publish your project to Azure](./media/functions-publish-project-vscode/function-app-publish-project.png)
2020

2121
1. Provide the following information at the prompts:
2222

0 commit comments

Comments
 (0)