From 0ef02f43457fc6b16821afc84173b5d702ff1d4a Mon Sep 17 00:00:00 2001 From: Cristian Bastidas <6288158+crixodia@users.noreply.github.com> Date: Sat, 15 Oct 2022 23:37:10 -0500 Subject: [PATCH] az-webapp: add page (#8845) --- pages/common/az-webapp.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/az-webapp.md diff --git a/pages/common/az-webapp.md b/pages/common/az-webapp.md new file mode 100644 index 000000000..3f27c79ab --- /dev/null +++ b/pages/common/az-webapp.md @@ -0,0 +1,21 @@ +# az webapp + +> Manage Web Applications hosted in Azure Cloud Services. +> Part of `azure-cli`. +> Mode information: . + +- List available runtimes for a web application: + +`az webapp list-runtimes --os-type {{windows|linux}}` + +- Create a web application: + +`az webapp up --name {{name}} --location {{location}} --runtime {{runtime}}` + +- List all web applications: + +`az webapp list` + +- Delete a specific web application: + +`az webapp delete --name {{name}} --resource-group {{resource_group}}`