Using powershell we try to resolve the number of function-apps deployed within an AppServicePlan using the 'Get-AzWebApp -AppServicePlan $asp' powershell call.
Currently it doesn't return all the hosted function-apps, but only 100. After investigating the Azure portal it looks the issue is also available within the Azure portal. Also there only 100 function-apps can be shown. The 'load more' button also doesn't load the additional function-apps that are deployed. So also the Azure portal has a bug. After investigating the requests executed in the Azure Portal using the Network tracing it is working based on the first 100, and than a nextLink url needs to be called.
The question is now, should the Get-AzWebApp need to execute the nextLink logic, so retrieve all the available function-apps?
If not, please let me know how I can get all the number of function-apps using the Powershell modules, because there is no function or module I can use to call the nextLink logic.
When running the below code it returns this:
Retrieving list of FunctionApps from 'ipaas-asp-functions-d'
Found 113 FunctionApps
But next it only displays the first 100 apps.
Description
Using powershell we try to resolve the number of function-apps deployed within an AppServicePlan using the 'Get-AzWebApp -AppServicePlan $asp' powershell call. Currently it doesn't return all the hosted function-apps, but only 100. After investigating the Azure portal it looks the issue is also available within the Azure portal. Also there only 100 function-apps can be shown. The 'load more' button also doesn't load the additional function-apps that are deployed. So also the Azure portal has a bug. After investigating the requests executed in the Azure Portal using the Network tracing it is working based on the first 100, and than a nextLink url needs to be called. The question is now, should the Get-AzWebApp need to execute the nextLink logic, so retrieve all the available function-apps? If not, please let me know how I can get all the number of function-apps using the Powershell modules, because there is no function or module I can use to call the nextLink logic.
When running the below code it returns this: Retrieving list of FunctionApps from 'ipaas-asp-functions-d' Found 113 FunctionApps But next it only displays the first 100 apps.
Issue script & Debug output
Environment data
Module versions
Error output
No response