Skip to content

Commit 695752a

Browse files
Merge pull request #277086 from ggailey777/patch-2
[Functions] Clarify that in-portal editing is supported for Python functions
2 parents b5f2ad6 + b87d365 commit 695752a

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

articles/azure-functions/functions-create-function-app-portal.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create your first function in the Azure portal
33
description: Learn how to create your first Azure Function for serverless execution using the Azure portal.
44
ms.topic: how-to
5-
ms.date: 01/31/2024
5+
ms.date: 06/03/2024
66
ms.custom: devx-track-csharp, mvc, devcenter, cc996988-fb4f-47, devdivchpfy22, devx-track-extended-java, devx-track-js, devx-track-python, build-2024, devx-track-ts
77
zone_pivot_groups: programming-languages-set-functions
88
---
@@ -55,14 +55,6 @@ Choose your preferred programming language at the top of the article.
5555
>+ [Visual Studio Code](./create-first-function-vs-code-powershell.md)
5656
>+ [Terminal/command prompt](./create-first-function-cli-powershell.md)
5757
::: zone-end
58-
::: zone pivot="programming-language-python"
59-
>[!NOTE]
60-
>Developing Python functions in the Azure portal is currently only supported when running in a [Consumption plan](./consumption-plan.md). For more information, see [Development limitations in the Azure portal](functions-how-to-use-azure-function-app-settings.md#development-limitations-in-the-azure-portal).
61-
>
62-
> You should instead [develop your functions locally](functions-develop-local.md) and publish to a function app in Azure. Use one of the following links to get started with your chosen local development environment:
63-
>+ [Visual Studio Code](./create-first-function-vs-code-python.md)
64-
>+ [Terminal/command prompt](./create-first-function-cli-python.md)
65-
::: zone-end
6658

6759
Please review the [known issues](./recover-python-functions.md#development-issues-in-the-azure-portal) for development of Azure Functions using Python in the Azure portal.
6860

articles/azure-functions/functions-how-to-use-azure-function-app-settings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -390,11 +390,11 @@ In this script, replace `<SUBSCRIPTION_ID>` and `<APP_NAME>` with the ID of your
390390

391391
You must consider these limitations when developing your functions in the [Azure portal](https://portal.azure.com):
392392

393-
+ In-portal editing is only supported for JavaScript, PowerShell, Python, and C# Script functions.
394-
+ Python in-portal editing is only supported when running in the Consumption plan.
395393
+ In-portal editing is currently only supported for functions that were created or last modified in the portal.
394+
+ In-portal editing is only supported for JavaScript, PowerShell, Python, and C# Script functions.
395+
+ In-portal editing isn't currently supported in the preview release of the [Flex Consumption plan](flex-consumption-plan.md#considerations).
396396
+ When you deploy code to a function app from outside the portal, you can no longer edit any of the code for that function app in the portal. In this case, just continue using [local development](functions-develop-local.md).
397-
+ For compiled C# functions, Java functions, and some Python functions, you can create the function app and related resources in the portal. However, you must create the functions code project locally and then publish it to Azure.
397+
+ For compiled C# functions and Java functions, you can create the function app and related resources in the portal. However, you must create the functions code project locally and then publish it to Azure.
398398

399399
When possible, you should develop your functions locally and publish your code project to a function app in Azure. For more information, see [Code and test Azure Functions locally](functions-develop-local.md).
400400

0 commit comments

Comments
 (0)