az-webapp: add page (#8845)

pull/1/head
Cristian Bastidas 2022-10-15 23:37:10 -05:00 committed by GitHub
parent 79eb15148e
commit 0ef02f4345
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 0 deletions

21
pages/common/az-webapp.md Normal file
View File

@ -0,0 +1,21 @@
# az webapp
> Manage Web Applications hosted in Azure Cloud Services.
> Part of `azure-cli`.
> Mode information: <https://learn.microsoft.com/cli/azure/webapp>.
- 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}}`