You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -159,7 +159,7 @@ az appservice plan list --query "[?id=='$appServicePlanId'].sku.tier" --output t
159
159
160
160
In the previous example replace `<RESOURCE_GROUP>` and `<FUNCTION_APP_NAME>` with the resource group and function app names, respective.
161
161
162
-
# [Azure PowerShell](#tab/azure-powershell)
162
+
###[Azure PowerShell](#tab/azure-powershell)
163
163
164
164
Run the following Azure PowerShell command to get your hosting plan type:
165
165
@@ -257,7 +257,7 @@ Use the following procedure to migrate from a Premium plan to a Consumption plan
257
257
258
258
HTTP triggered functions can generally be called by using a URL in the format: `https://<APP_NAME>.azurewebsites.net/api/<FUNCTION_NAME>`. When the authorization to your function is set a value other than `anonymous`, you must also provide an access key in your request. The access key can either be provided in the URL using the `?code=` query string or in the request header. To learn more, see [Function access keys](functions-bindings-http-webhook-trigger.md#authorization-keys). There are several ways to get your access keys.
259
259
260
-
# [Portal](#tab/portal)
260
+
### [Portal](#tab/portal)
261
261
262
262
1. Sign in to the Azure portal, then search for and select **Function App**.
263
263
@@ -269,7 +269,7 @@ HTTP triggered functions can generally be called by using a URL in the format: `
269
269
270
270
You can also practice least privilege by using the key just for the specific function key by selecting **Function keys** under **Developer** in your HTTP triggered function.
271
271
272
-
# [Azure CLI](#tab/azure-cli)
272
+
### [Azure CLI](#tab/azure-cli)
273
273
274
274
Run the following script in Azure Cloud Shell, the output of which is the [default (host) key](functions-bindings-http-webhook-trigger.md#authorization-scopes-function-level) that can be used to access any HTTP triggered function in the function app.
275
275
@@ -283,7 +283,7 @@ az rest --method POST --uri $path --query functionKeys.default --output tsv
283
283
284
284
In this script, replace `<SUBSCRIPTION_ID>` and `<APP_NAME>` with the ID of your subscription and your function app name, respective. This script runs on Bash in Cloud Shell. It must be modified to run in a Windows command prompt.
285
285
286
-
# [Azure PowerShell](#tab/azure-powershell)
286
+
###[Azure PowerShell](#tab/azure-powershell)
287
287
288
288
Run the following script, the output of which is the [default (host) key](functions-bindings-http-webhook-trigger.md#authorization-scopes-function-level) that can be used to access any HTTP triggered function in the function app.
289
289
@@ -303,11 +303,11 @@ In this script, replace `<SUBSCRIPTION_ID>` and `<APP_NAME>` with the ID of your
303
303
304
304
You must consider these limitations when developing your functions in the [Azure portal](https://portal.azure.com):
305
305
306
-
+ In-portal editing is only supported for JavaScript, PowerShell, Python, and C# Script functions.
307
-
+ Python in-portal editing is only supported when running in the Consumption plan.
308
306
+ In-portal editing is currently only supported for functions that were created or last modified in the portal.
307
+
+ In-portal editing is only supported for JavaScript, PowerShell, Python, and C# Script functions.
308
+
+ In-portal editing isn't currently supported in the preview release of the [Flex Consumption plan](flex-consumption-plan.md#considerations).
309
309
+ 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).
310
-
+ 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.
310
+
+ For compiled C# functionsand 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.
311
311
312
312
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).
0 commit comments