azure-functions
Installation
SKILL.md
Azure Functions
Manage serverless functions on Azure.
List function apps
az functionapp list --query '[].{Name:name,ResourceGroup:resourceGroup,State:state,Runtime:siteConfig.linuxFxVersion}' -o table
Get function app details
az functionapp show --name my-func-app --resource-group my-rg | jq '{name, state, defaultHostName, kind, httpsOnly}'