Skip to content

Commit 96a4d28

Browse files
Fix #17184 : Get-AzWebApp to return SiteConfig details in the response when requested the WebApps under subscreption
1 parent fbc35fd commit 96a4d28

File tree

3 files changed

+22753
-1881
lines changed

3 files changed

+22753
-1881
lines changed

src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.WebAppTests/TestGetWebApp.json

Lines changed: 22751 additions & 1880 deletions
Large diffs are not rendered by default.

src/Websites/Websites/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21-
21+
* Fixed `Get-AzWebApp` to return SiteConfig details in the response when requested the WebApps under subscreption #17184
2222
## Version 2.10.0
2323
* Updated `New-AzAppServicePlan` to create an app service plan with host environment id #16094
2424

src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ private void GetBySubscription()
169169
{
170170
foreach(var item in result)
171171
{
172+
WebsitesClient.GetWebAppConfiguration(rg, item.Name, null, item);
172173
list.Add(new PSSite(item));
173174
}
174175
}

0 commit comments

Comments
 (0)