Description
Description of the new feature
When I use Get-AzWebApp
, I don't have to necessarily put parameters like resource group and name of the web app example of command.
This also works for GetAzAppServicePlan
Whereas, for Get-AzAppServiceEnvironment
, always asks for the resource group and the name of the resource.
For now the only equivalent I've found is using Get-AzResource -ResourceType Microsoft.Web/hostingEnvironments
But when you put it to csv: Get-AzResource -ResourceType Microsoft.Web/hostingEnvironments| Select-Object <properties> | Export-Csv <path> -NoTypeInformation
the output isn't formatted correctly to csv, especially if there are tags on the resources, unless you caracteries each tag I suppose.
Would it be possible to implement the beahvior of GetAzAppServicePlan
and Get-AzWebApp
on Get-AzAppServiceEnvironment please?
Proposed implementation details (optional)
No response