Skip to content

Commit 3085904

Browse files
Fix: #18042: Updated Get-AzWebApp and Get-AzWebAppSlot to expose VirtualNetworkSubnetId property (#18092)
* Fix #17184 : `Get-AzWebApp` to return SiteConfig details in the response when requested the WebApps under subscreption * Revert "Fix #17184 : `Get-AzWebApp` to return SiteConfig details in the response when requested the WebApps under subscreption" This reverts commit 96a4d28. * Fix #17184 : `Get-AzWebApp` to return SiteConfig details in the response when requested the WebApps under subscreption * Revert "Fix #17184 : `Get-AzWebApp` to return SiteConfig details in the response when requested the WebApps under subscreption" This reverts commit 96a4d28. * [AppServices]: Fix #18042 : Updated `Get-AzWebApp` and `Get-AzWebAppSlot` to expose `VirtualNetworkSubnetId` property
1 parent cf93cef commit 3085904

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

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+
* Updated `Get-AzWebApp` and `Get-AzWebAppSlot` to expose `VirtualNetworkSubnetId` property [#18042]
2222
## Version 2.11.1
2323
* Updated 'New-AzWebAppContainerPSSession' with CmdletDeprecation Attribute [#16646]
2424
* Updated `Restore-AzDeletedWebApp` to fix issue that prevents the cmdlet from working on hosts with a locale is anything different from `en-US`

src/Websites/Websites/Models.WebApp/PSSite.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ public PSSite(Site other)
6363
slotSwapStatus: other.SlotSwapStatus,
6464
httpsOnly: other.HttpsOnly,
6565
identity: other.Identity,
66-
customDomainVerificationId: other.CustomDomainVerificationId
66+
customDomainVerificationId: other.CustomDomainVerificationId,
67+
virtualNetworkSubnetId: other.VirtualNetworkSubnetId
6768
)
6869
{
6970
PropertyInfo AzureStoragePathProp = other.GetType().GetProperty("AzureStoragePath");

0 commit comments

Comments
 (0)