With Azure Powershell, how do you get a list of all of a Function App's functions and their respective status (status at the function level, not FunctionApp level)?
I can get a list of FunctionApps with
Get-AzFunctionApp -ResourceGroupName my-resource-group-name
which will give me the FunctionApps and it's FunctionApp.Status but cannot then iterate through these FunctionApps to find a list of each of their functions and the status of those functions.