I am trying to list the type of app service associated with particular subscription using azure cli.
Type of app service:
- Web apps
- logic apps
- Function apps
- mobile apps
- API apps
So far I have tried to find out the individual command for these. Out of which I could only get
web apps : az webapp list --subscription subscriptionId
function apps: az functionapp list --subscription subscriptionId
logic apps: az logic workflow list --subscription subscriptionId
I am not sure the above commands include the API apps and mobile apps or it filters.
Any help would be much appreciated.
az webapp list
to list mobile and api app? – Jim Xuaz webapp list
do not list function apps even though they have type : microsoft.Web/sites – user273181az web list
cannot list function apps. Because it filters, it will exclude the function app resource. For more details, please refer to github.com/Azure/azure-cli/blob/… – Jim Xu