Forrest logo
back to the az tool

az-webapp:tldr:517f1

az-webapp: List available runtimes for a web application.
$ az webapp list-runtimes --os-type ${select}
try on your machine

This command is using the Azure CLI (Command-Line Interface) to list the available runtimes for web apps.

The az webapp list-runtimes part of the command is the main command to retrieve the list of runtimes.

The --os-type flag is an option that specifies the operating system type for which you want to list the runtimes. The value ${select} is a placeholder for the actual operating system type you want to use. You need to replace ${select} with the desired operating system type, such as Windows or Linux.

By executing this command with the appropriate operating system type, you will get a list of the available runtimes that can be used for web apps running on that specific operating system. This can be helpful when choosing the correct runtime for your application.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the az tool