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
#Customer intent: As a developer, I need to know how to use the Azure Developer CLI to create and deploy my function code securely to a new function app in the Flex Consumption plan in Azure by using azd templates and the azd up command.
@@ -26,7 +26,9 @@ By default, the Flex Consumption plan follows a _pay-for-what-you-use_ billing m
1. When you're done, press Ctrl+C in the terminal window to stop the `func.exe` host process.
282
284
::: zone pivot="programming-language-python"
283
-
5. Run `deactivate` to shut down the virtual environment.
285
+
5. Run `deactivate` to shut down the virtual environment.
284
286
::: zone-end
285
287
286
288
## Review the code (optional)
@@ -336,6 +338,24 @@ This `run.ps1` file implements the function code:
336
338
337
339
---
338
340
341
+
::: zone pivot="programming-language-csharp"
342
+
You can review the complete template project [here](https://github.com/Azure-Samples/functions-quickstart-dotnet-azd).
343
+
::: zone-end
344
+
::: zone pivot="programming-language-java"
345
+
You can review the complete template project [here](https://github.com/Azure-Samples/azure-functions-java-flex-consumption-azd).
346
+
::: zone-end
347
+
::: zone pivot="programming-language-javascript"
348
+
You can review the complete template project [here](https://github.com/Azure-Samples/functions-quickstart-javascript-azd).
349
+
::: zone-end
350
+
::: zone pivot="programming-language-typescript"
351
+
You can review the complete template project [here](https://github.com/Azure-Samples/functions-quickstart-typescript-azd).
352
+
::: zone-end
353
+
::: zone pivot="programming-language-powershell"
354
+
You can review the complete template project [here](https://github.com/Azure-Samples/functions-quickstart-powershell-azd).
355
+
::: zone-end
356
+
::: zone pivot="programming-language-python"
357
+
You can review the complete template project [here](https://github.com/Azure-Samples/functions-quickstart-python-http-azd).
358
+
::: zone-end
339
359
After you verify your functions locally, it's time to publish them to Azure.
340
360
::: zone pivot="programming-language-java"
341
361
## Create Azure resources
@@ -451,7 +471,7 @@ You can now invoke your function endpoints in Azure by making HTTP requests to t
451
471
You can use the Core Tools to obtain the URL endpoints of your functions running in Azure.
452
472
453
473
1. In your local terminal or command prompt, run these commands to get the URL endpoint values:
454
-
474
+
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-java,programming-language-python"
455
475
### [bash](#tab/bash)
456
476
457
477
```bash
@@ -464,12 +484,27 @@ You can use the Core Tools to obtain the URL endpoints of your functions running
464
484
for /f "tokens=*" %i in ('azd env get-value AZURE_FUNCTION_NAME') do set APP_NAME=%i
The `azd env get-value` command gets your function app name from the local environment. Using the `--show-keys` option with `func azure functionapp list-functions` means that the returned **Invoke URL:** value for each endpoint includes a function-level access key.
471
506
472
-
1. As before, use your HTTP test tool to validate these URLs in your function app running in Azure.
507
+
2. As before, use your HTTP test tool to validate these URLs in your function app running in Azure.
473
508
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-python"
0 commit comments