From this question, I can get the list of all deployed functions (enabled or not) with the following script, but is there a way to know which ones are disabled?
$Params = @{
ResourceGroupName = $ResourceGroupName
ResourceType = 'Microsoft.Web/sites/functions'
ResourceName = $AppName
ApiVersion = '2015-08-01'
}
Get-AzureRmResource @Params
